Spaces:
Sleeping
Sleeping
Update categories/accomodation/model.py
Browse files
categories/accomodation/model.py
CHANGED
@@ -21,9 +21,9 @@ class InformationExtractedFromABillReceipt(BaseModel):
|
|
21 |
hotel_name: str = Field(..., title="The name of the hotel")
|
22 |
address: str = Field(..., title="The address of the hotel")
|
23 |
bill_number: str = Field(..., title="The bill number/invoice number")
|
24 |
-
|
25 |
check_in_date_time: datetime = Field(..., title="The check-in date and time")
|
26 |
check_out_date_time: datetime = Field(..., title="The check-out date and time")
|
27 |
-
|
28 |
booking_platform: str = Field(..., title="The booking platform")
|
29 |
bill_date: datetime = Field(..., title="The bill date")
|
|
|
21 |
hotel_name: str = Field(..., title="The name of the hotel")
|
22 |
address: str = Field(..., title="The address of the hotel")
|
23 |
bill_number: str = Field(..., title="The bill number/invoice number")
|
24 |
+
uids: str = Field(..., title="The booking ID/confirmation ID/booking number")
|
25 |
check_in_date_time: datetime = Field(..., title="The check-in date and time")
|
26 |
check_out_date_time: datetime = Field(..., title="The check-out date and time")
|
27 |
+
total: float = Field(..., title="The total amount charged")
|
28 |
booking_platform: str = Field(..., title="The booking platform")
|
29 |
bill_date: datetime = Field(..., title="The bill date")
|