qq1023 commited on
Commit
23e5d8d
·
1 Parent(s): 724cbd7

Update categories/accomodation/model.py

Browse files
Files changed (1) hide show
  1. categories/accomodation/model.py +2 -2
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
- 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")
 
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")