@stadiamaps/api
Version:
Stadia Maps Geospatial APIs
51 lines • 1.41 kB
TypeScript
/**
* Stadia Maps Geospatial APIs
* The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
*
* The version of the OpenAPI document: 10.1.2
* Contact: support@stadiamaps.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface BikeNetwork
*/
export interface BikeNetwork {
/**
*
* @type {boolean}
* @memberof BikeNetwork
*/
mountain?: boolean;
/**
*
* @type {boolean}
* @memberof BikeNetwork
*/
local?: boolean;
/**
*
* @type {boolean}
* @memberof BikeNetwork
*/
regional?: boolean;
/**
*
* @type {boolean}
* @memberof BikeNetwork
*/
national?: boolean;
}
/**
* Check if a given object implements the BikeNetwork interface.
*/
export declare function instanceOfBikeNetwork(value: object): value is BikeNetwork;
export declare function BikeNetworkFromJSON(json: any): BikeNetwork;
export declare function BikeNetworkFromJSONTyped(json: any, ignoreDiscriminator: boolean): BikeNetwork;
export declare function BikeNetworkToJSON(json: any): BikeNetwork;
export declare function BikeNetworkToJSONTyped(value?: BikeNetwork | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BikeNetwork.d.ts.map