updates
This commit is contained in:
@@ -29,6 +29,9 @@ export interface Booking {
|
||||
check_out_date: string;
|
||||
guest_count: number;
|
||||
total_price: number;
|
||||
original_price?: number;
|
||||
discount_amount?: number;
|
||||
promotion_code?: string;
|
||||
status:
|
||||
| 'pending'
|
||||
| 'confirmed'
|
||||
@@ -70,6 +73,13 @@ export interface Booking {
|
||||
phone_number?: string;
|
||||
};
|
||||
payments?: Payment[];
|
||||
payment_balance?: {
|
||||
total_paid: number;
|
||||
total_price: number;
|
||||
remaining_balance: number;
|
||||
is_fully_paid: boolean;
|
||||
payment_percentage: number;
|
||||
};
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user