UNPKG

@stadiamaps/api

Version:
45 lines 1.52 kB
/** * 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.0.1 * 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 Contour */ export interface Contour { /** * The time in minutes for the contour. Mutually exclusive of distance. * @type {number} * @memberof Contour */ time?: number; /** * The distance in km for the contour. Mutually exclusive of time. * @type {number} * @memberof Contour */ distance?: number; /** * The color for the output contour, specified as a hex value (without a leading `#`). If no color is specified, one will be assigned automatically. * @type {string} * @memberof Contour */ color?: string; } /** * Check if a given object implements the Contour interface. */ export declare function instanceOfContour(value: object): value is Contour; export declare function ContourFromJSON(json: any): Contour; export declare function ContourFromJSONTyped(json: any, ignoreDiscriminator: boolean): Contour; export declare function ContourToJSON(json: any): Contour; export declare function ContourToJSONTyped(value?: Contour | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Contour.d.ts.map