UNPKG

@revolugo/booking-api-client

Version:

Javascript Revolugo Booking API Client (browser + server)

68 lines (67 loc) 1.8 kB
/** * 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. */ /** * Hotel image in various sizes. * @export * @interface HotelImageApi */ export interface HotelImageApi { /** * Caption of the hotel image. * @type {string} * @memberof HotelImageApi */ caption?: string | null; /** * Whether this image is the primary (hero) image of the hotel. * @type {boolean} * @memberof HotelImageApi */ isHeroImage: boolean; /** * URL of the large-size image. * @type {string} * @memberof HotelImageApi */ l: string; /** * URL of the medium-size image. * @type {string} * @memberof HotelImageApi */ m: string; /** * URL of the small-size image. * @type {string} * @memberof HotelImageApi */ s: string; /** * URL of the extra-large-size image. * @type {string} * @memberof HotelImageApi */ xl: string; /** * URL of the extra-small-size image. * @type {string} * @memberof HotelImageApi */ xs: string; } /** * Check if a given object implements the HotelImageApi interface. */ export declare function instanceOfHotelImageApi(value: object): boolean; export declare function HotelImageApiFromJSON(json: any): HotelImageApi; export declare function HotelImageApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): HotelImageApi; export declare function HotelImageApiToJSON(value?: HotelImageApi | null): any;