stay confident inclusion
This commit is contained in:
parent
8bc525e4c2
commit
b9fe9a0552
3 changed files with 3 additions and 18 deletions
|
|
@ -4817,14 +4817,6 @@ models:
|
|||
- name: product_name
|
||||
data_type: character varying
|
||||
description: Type of payment verification, categorizing the transaction.
|
||||
data_tests:
|
||||
- accepted_values:
|
||||
values:
|
||||
- "WAIVER"
|
||||
- "DEPOSIT"
|
||||
- "CHECKINCOVER"
|
||||
- "FEE"
|
||||
- "UNKNOWN"
|
||||
|
||||
- name: is_host_taking_waiver_risk
|
||||
data_type: boolean
|
||||
|
|
@ -4875,38 +4867,28 @@ models:
|
|||
description: |
|
||||
The total amount of the payment in GBP.
|
||||
This includes taxes if applicable.
|
||||
data_tests:
|
||||
- not_null
|
||||
|
||||
- name: amount_without_taxes_in_txn_currency
|
||||
data_type: numeric
|
||||
description: |
|
||||
The net amount of the payment without taxes, in local currency.
|
||||
data_tests:
|
||||
- not_null
|
||||
|
||||
- name: amount_without_taxes_in_gbp
|
||||
data_type: numeric
|
||||
description: |
|
||||
The net amount of the payment without taxes, in GBP.
|
||||
data_tests:
|
||||
- not_null
|
||||
|
||||
- name: tax_amount_in_txn_currency
|
||||
data_type: numeric
|
||||
description: |
|
||||
The tax portion of the payment, in local currency.
|
||||
Will be 0 if no taxes apply.
|
||||
data_tests:
|
||||
- not_null
|
||||
|
||||
- name: tax_amount_in_gbp
|
||||
data_type: numeric
|
||||
description: |
|
||||
The tax portion of the payment, in GBP. Will be 0 if no
|
||||
taxes apply.
|
||||
data_tests:
|
||||
- not_null
|
||||
|
||||
- name: amount_due_to_host_in_txn_currency
|
||||
data_type: numeric
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@ select
|
|||
then 'Waiver'
|
||||
when product_name = 'DEPOSIT'
|
||||
then 'Deposit'
|
||||
when product_name = 'STAYDISRUPT'
|
||||
then 'StayDisrupt'
|
||||
when product_name = 'UNKNOWN'
|
||||
then null
|
||||
else product_name
|
||||
|
|
|
|||
|
|
@ -1530,6 +1530,7 @@ models:
|
|||
- "Waiver"
|
||||
- "Deposit"
|
||||
- "CheckInCover"
|
||||
- "StayDisrupt"
|
||||
- "Fee"
|
||||
|
||||
- name: is_host_taking_waiver_risk
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue