UNPKG

@stadiamaps/api

Version:
45 lines 1.74 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.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 OsrmVoiceInstruction */ export interface OsrmVoiceInstruction { /** * How far (in meters) from the upcoming maneuver the instruction should be announced. * @type {number} * @memberof OsrmVoiceInstruction */ distanceAlongGeometry: number; /** * The plain-text announcement. * @type {string} * @memberof OsrmVoiceInstruction */ announcement: string; /** * The announcement in Speech Synthesis Markup Language (SSML). Supported TTS engines include Amazon Polly and Apple's AVSpeechSynthesizer. * @type {string} * @memberof OsrmVoiceInstruction */ ssmlAnnouncement?: string; } /** * Check if a given object implements the OsrmVoiceInstruction interface. */ export declare function instanceOfOsrmVoiceInstruction(value: object): value is OsrmVoiceInstruction; export declare function OsrmVoiceInstructionFromJSON(json: any): OsrmVoiceInstruction; export declare function OsrmVoiceInstructionFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsrmVoiceInstruction; export declare function OsrmVoiceInstructionToJSON(json: any): OsrmVoiceInstruction; export declare function OsrmVoiceInstructionToJSONTyped(value?: OsrmVoiceInstruction | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OsrmVoiceInstruction.d.ts.map