new booking fields

This commit is contained in:
Joaquin Ossa 2025-02-19 15:29:05 +01:00
parent 6fce8c0ec6
commit a94fb760e5
4 changed files with 28 additions and 0 deletions

View file

@ -31,6 +31,8 @@ select
currency as currency,
exchange_rate_to_gbp as exchange_rate_to_gbp,
id_booking as id_booking,
booking_state as booking_state,
is_verification_request_complete as is_verification_request_complete,
id_user_host as id_user_host,
id_deal as id_deal,
host_first_name as host_first_name,

View file

@ -1846,6 +1846,15 @@ models:
description: The unique, Superhog generated id for this booking.
Can be null for verification request not related to a booking.
- name: booking_state
data_type: character varying
description: "State in which the booking is"
- name: is_verification_request_complete
data_type: boolean
description: "True if the verification request is considered
complete, AKA the guest has finished the full guest journey."
- name: id_user_host
data_type: character varying
description: |