Spaces:
Sleeping
Sleeping
Update categories/accomodation/model.py
Browse files
categories/accomodation/model.py
CHANGED
@@ -20,8 +20,8 @@ class InformationExtractedFromABillReceipt(BaseModel):
|
|
20 |
|
21 |
hotel_name: str = Field(..., title="The name of the hotel")
|
22 |
address: str = Field(..., title="The address of the hotel")
|
23 |
-
|
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 |
total: float = Field(..., title="The total amount charged")
|
|
|
20 |
|
21 |
hotel_name: str = Field(..., title="The name of the hotel")
|
22 |
address: str = Field(..., title="The address of the hotel")
|
23 |
+
uids: str = Field(..., title="The bill number/invoice number")
|
24 |
+
booking_id: 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")
|