UNPKG

@revolugo/booking-api-client

Version:

Javascript Revolugo Booking API Client (browser + server)

29 lines (28 loc) 968 B
/** * Revolugo Booking API Reference * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.5.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Set the language for the returned content using a valid language code. * @export */ export declare const Locale: { readonly DeDe: "de-DE"; readonly EnUs: "en-US"; readonly EsEs: "es-ES"; readonly FrFr: "fr-FR"; readonly ItIt: "it-IT"; readonly NlNl: "nl-NL"; readonly PtPt: "pt-PT"; }; export type Locale = typeof Locale[keyof typeof Locale]; export declare function LocaleFromJSON(json: any): Locale; export declare function LocaleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Locale; export declare function LocaleToJSON(value?: Locale | null): any;