UNPKG

qe-fe-automation

Version:
44 lines (38 loc) 590 B
export interface IHotelLocation { description: string; place_id: string; } export interface IHotelSearch { searchId: string; } export interface IHotelSearchOptions { searchId: string; options: [ { uuid: string; inventories: []; } ]; } export interface IHotelRates { rooms: [ { uuid: string; inventory: string; } ]; _links: { rates: { href: string; }; }; } export interface IContract { hotelUuid: string; roomUuid: string; uuid: string; sessionId: string; } export interface IPayment { uuid: string; }