This commit is contained in:
Pablo Martin 2024-02-26 17:40:57 +01:00
parent b4dd241c65
commit 53dff9a218

View file

@ -70,9 +70,9 @@ models:
description: "{{ doc('dwh_extracted_date_utc_desc')}}"
- name: stg_stripe__charges
description: |
The Charge object represents a single attempt to move money into your Stripe account. PaymentIntent confirmation is the most common way to create Charges, but transferring money to a different Stripe account through Connect also creates Charges. Some legacy payment flows create Charges directly, which is not recommended for new integrations.
The Charge object represents a single attempt to move money into your Stripe account. PaymentIntent confirmation is the most common way to create Charges, but transferring money to a different Stripe account through Connect also creates Charges. Some legacy payment flows create Charges directly, which is not recommended for new integrations.
You can read more about this object here: https://docs.stripe.com/api/charges.
You can read more about this object here: https://docs.stripe.com/api/charges.
columns:
- name: id
data_type: character varying
@ -113,7 +113,7 @@ models:
- name: created_at_utc
data_type: timestamp with time zone
description: "The timestamp at which the object was created."
- name: created_date_utc
data_type: date
description: "The date when the object was created."
@ -306,8 +306,8 @@ models:
description: "{{ doc('generic_id_desc') }}"
- name: amount
data_type: bigint
description: "Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the smallest currency unit (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or equivalent in charge currency. The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99)."
data_type: numeric
description: "Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge. The minimum amount is $0.50 US or equivalent in charge currency."
- name: object
data_type: character varying
@ -333,6 +333,10 @@ models:
data_type: timestamp with time zone
description: "The timestamp at which the object was created."
- name: created_date_utc
data_type: timestamp with time zone
description: "The date when which the object was created."
- name: invoice
data_type: character varying
description: "ID of the invoice that created this PaymentIntent, if it exists."
@ -341,6 +345,10 @@ models:
data_type: timestamp with time zone
description: "The timestamp at which the object was last updated."
- name: updated_date_utc
data_type: date
description: "The date when the object was last updated."
- name: currency
data_type: character varying
description: "{{ doc('stripe_currency_desc') }}"
@ -378,6 +386,10 @@ models:
data_type: timestamp with time zone
description: "Populated when status is canceled, this is the time at which the PaymentIntent was canceled."
- name: canceled_date_utc
data_type: date
description: "Populated when status is canceled, this is the date at which the PaymentIntent was canceled."
- name: description
data_type: character varying
description: "An arbitrary string attached to the object. Often useful for displaying to users."
@ -488,14 +500,18 @@ models:
data_type: jsonb
description: "{{ doc('field_docs_na_desc') }}"
- name: dwh_extracted_at_date
- name: dwh_extracted_at_utc
data_type: timestamp with time zone
description: "{{ doc('dwh_extracted_at_utc_desc') }}"
- name: dwh_extracted_date_utc
data_type: date
description: "{{ doc('dwh_extracted_date_utc_desc') }}"
- name: stg_stripe__refunds
description: |
Refund objects allow you to refund a previously created charge that isnt refunded yet. Funds are refunded to the credit or debit card thats initially charged.
Refund objects allow you to refund a previously created charge that isnt refunded yet. Funds are refunded to the credit or debit card thats initially charged.
You can read more about this object here: https://docs.stripe.com/api/refunds.
You can read more about this object here: https://docs.stripe.com/api/refunds.
columns:
- name: id
data_type: character varying
@ -503,7 +519,7 @@ models:
- name: amount
data_type: bigint
description: "Amount, in cents."
description: "Amount for the refund."
- name: charge
data_type: character varying
@ -525,10 +541,18 @@ models:
data_type: timestamp with time zone
description: "Time at which the object was created."
- name: created_date_utc
data_type: timestamp with time zone
description: "The date when which the object was created."
- name: updated_at_utc
data_type: timestamp with time zone
description: "Time at which the object was last updated."
- name: updated_date_utc
data_type: date
description: "The date when the object was last updated."
- name: currency
data_type: character varying
description: "{{ doc('stripe_currency_desc') }}"
@ -561,6 +585,10 @@ models:
data_type: character varying
description: "The transfer reversal thats associated with the refund. Only present if the charge came from another Stripe account."
- name: dwh_extracted_at_date
- name: dwh_extracted_at_utc
data_type: timestamp with time zone
description: "{{ doc ('dwh_extracted_at_utc_desc') }}"
description: "{{ doc('dwh_extracted_at_utc_desc') }}"
- name: dwh_extracted_date_utc
data_type: date
description: "{{ doc('dwh_extracted_date_utc_desc') }}"