qe-fe-automation
Version:
FE test automation framework using cypress
44 lines (38 loc) • 590 B
text/typescript
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;
}