@revolugo/booking-api-client
Version:
Javascript Revolugo Booking API Client (browser + server)
38 lines (37 loc) • 1.44 kB
TypeScript
/**
* 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.
*/
/**
*
* @export
* @interface HotelRoomOfferRequestApiResponseAllOf1
*/
export interface HotelRoomOfferRequestApiResponseAllOf1 {
/**
* Date of the **Hotel Room Offer Request** creation
* @type {string}
* @memberof HotelRoomOfferRequestApiResponseAllOf1
*/
createdAt: string;
/**
* id of the **Hotel Room Offer Request**
* @type {string}
* @memberof HotelRoomOfferRequestApiResponseAllOf1
*/
id: string;
}
/**
* Check if a given object implements the HotelRoomOfferRequestApiResponseAllOf1 interface.
*/
export declare function instanceOfHotelRoomOfferRequestApiResponseAllOf1(value: object): boolean;
export declare function HotelRoomOfferRequestApiResponseAllOf1FromJSON(json: any): HotelRoomOfferRequestApiResponseAllOf1;
export declare function HotelRoomOfferRequestApiResponseAllOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): HotelRoomOfferRequestApiResponseAllOf1;
export declare function HotelRoomOfferRequestApiResponseAllOf1ToJSON(value?: HotelRoomOfferRequestApiResponseAllOf1 | null): any;