@stadiamaps/api
Version:
Stadia Maps Geospatial APIs
45 lines • 1.65 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.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 ManeuverSignElement
*/
export interface ManeuverSignElement {
/**
* The interchange sign text (varies based on the context; see the `maneuverSign` schema).
* @type {string}
* @memberof ManeuverSignElement
*/
text: string;
/**
* True if the sign is a route number.
* @type {boolean}
* @memberof ManeuverSignElement
*/
isRouteNumber?: boolean;
/**
* The frequency of this sign element within a set a consecutive signs.
* @type {number}
* @memberof ManeuverSignElement
*/
consecutiveCount?: number;
}
/**
* Check if a given object implements the ManeuverSignElement interface.
*/
export declare function instanceOfManeuverSignElement(value: object): value is ManeuverSignElement;
export declare function ManeuverSignElementFromJSON(json: any): ManeuverSignElement;
export declare function ManeuverSignElementFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManeuverSignElement;
export declare function ManeuverSignElementToJSON(json: any): ManeuverSignElement;
export declare function ManeuverSignElementToJSONTyped(value?: ManeuverSignElement | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=ManeuverSignElement.d.ts.map