published on Friday, Aug 14, 2026 by Pulumi
published on Friday, Aug 14, 2026 by Pulumi
Issue a credit note to adjust an invoice’s amount after the invoice is finalized.
Related guide: Credit notes
Create CreditNote Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CreditNote(name: string, args: CreditNoteArgs, opts?: CustomResourceOptions);@overload
def CreditNote(resource_name: str,
args: CreditNoteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CreditNote(resource_name: str,
opts: Optional[ResourceOptions] = None,
invoice: Optional[str] = None,
amount: Optional[float] = None,
credit_amount: Optional[float] = None,
effective_at: Optional[float] = None,
email_type: Optional[str] = None,
memo: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
out_of_band_amount: Optional[float] = None,
reason: Optional[str] = None,
refund_amount: Optional[float] = None,
refunds: Optional[Sequence[CreditNoteRefundArgs]] = None,
shipping_cost: Optional[CreditNoteShippingCostArgs] = None)func NewCreditNote(ctx *Context, name string, args CreditNoteArgs, opts ...ResourceOption) (*CreditNote, error)public CreditNote(string name, CreditNoteArgs args, CustomResourceOptions? opts = null)
public CreditNote(String name, CreditNoteArgs args)
public CreditNote(String name, CreditNoteArgs args, CustomResourceOptions options)
type: stripe:CreditNote
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "stripe_credit_note" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CreditNoteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CreditNoteArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CreditNoteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CreditNoteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CreditNoteArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var creditNoteResource = new Stripe.CreditNote("creditNoteResource", new()
{
Invoice = "string",
Amount = 0.0,
CreditAmount = 0.0,
EffectiveAt = 0.0,
EmailType = "string",
Memo = "string",
Metadata =
{
{ "string", "string" },
},
OutOfBandAmount = 0.0,
Reason = "string",
RefundAmount = 0.0,
Refunds = new[]
{
new Stripe.Inputs.CreditNoteRefundArgs
{
AmountRefunded = 0.0,
PaymentRecordRefund = new Stripe.Inputs.CreditNoteRefundPaymentRecordRefundArgs
{
PaymentRecord = "string",
RefundGroup = "string",
},
Refund = "string",
Type = "string",
},
},
ShippingCost = new Stripe.Inputs.CreditNoteShippingCostArgs
{
AmountSubtotal = 0.0,
AmountTax = 0.0,
AmountTotal = 0.0,
ShippingRate = "string",
Taxes = new[]
{
new Stripe.Inputs.CreditNoteShippingCostTaxArgs
{
Amount = 0.0,
Rate = "string",
TaxabilityReason = "string",
TaxableAmount = 0.0,
},
},
},
});
example, err := stripe.NewCreditNote(ctx, "creditNoteResource", &stripe.CreditNoteArgs{
Invoice: pulumi.String("string"),
Amount: pulumi.Float64(0),
CreditAmount: pulumi.Float64(0),
EffectiveAt: pulumi.Float64(0),
EmailType: pulumi.String("string"),
Memo: pulumi.String("string"),
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
OutOfBandAmount: pulumi.Float64(0),
Reason: pulumi.String("string"),
RefundAmount: pulumi.Float64(0),
Refunds: stripe.CreditNoteRefundArray{
&stripe.CreditNoteRefundArgs{
AmountRefunded: pulumi.Float64(0),
PaymentRecordRefund: &stripe.CreditNoteRefundPaymentRecordRefundArgs{
PaymentRecord: pulumi.String("string"),
RefundGroup: pulumi.String("string"),
},
Refund: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ShippingCost: &stripe.CreditNoteShippingCostArgs{
AmountSubtotal: pulumi.Float64(0),
AmountTax: pulumi.Float64(0),
AmountTotal: pulumi.Float64(0),
ShippingRate: pulumi.String("string"),
Taxes: stripe.CreditNoteShippingCostTaxArray{
&stripe.CreditNoteShippingCostTaxArgs{
Amount: pulumi.Float64(0),
Rate: pulumi.String("string"),
TaxabilityReason: pulumi.String("string"),
TaxableAmount: pulumi.Float64(0),
},
},
},
})
resource "stripe_credit_note" "creditNoteResource" {
lifecycle {
create_before_destroy = true
}
invoice = "string"
amount = 0
credit_amount = 0
effective_at = 0
email_type = "string"
memo = "string"
metadata = {
"string" = "string"
}
out_of_band_amount = 0
reason = "string"
refund_amount = 0
refunds {
amount_refunded = 0
payment_record_refund = {
payment_record = "string"
refund_group = "string"
}
refund = "string"
type = "string"
}
shipping_cost = {
amount_subtotal = 0
amount_tax = 0
amount_total = 0
shipping_rate = "string"
taxes = [{
amount = 0
rate = "string"
taxability_reason = "string"
taxable_amount = 0
}]
}
}
var creditNoteResource = new CreditNote("creditNoteResource", CreditNoteArgs.builder()
.invoice("string")
.amount(0.0)
.creditAmount(0.0)
.effectiveAt(0.0)
.emailType("string")
.memo("string")
.metadata(Map.of("string", "string"))
.outOfBandAmount(0.0)
.reason("string")
.refundAmount(0.0)
.refunds(CreditNoteRefundArgs.builder()
.amountRefunded(0.0)
.paymentRecordRefund(CreditNoteRefundPaymentRecordRefundArgs.builder()
.paymentRecord("string")
.refundGroup("string")
.build())
.refund("string")
.type("string")
.build())
.shippingCost(CreditNoteShippingCostArgs.builder()
.amountSubtotal(0.0)
.amountTax(0.0)
.amountTotal(0.0)
.shippingRate("string")
.taxes(CreditNoteShippingCostTaxArgs.builder()
.amount(0.0)
.rate("string")
.taxabilityReason("string")
.taxableAmount(0.0)
.build())
.build())
.build());
credit_note_resource = stripe.CreditNote("creditNoteResource",
invoice="string",
amount=float(0),
credit_amount=float(0),
effective_at=float(0),
email_type="string",
memo="string",
metadata={
"string": "string",
},
out_of_band_amount=float(0),
reason="string",
refund_amount=float(0),
refunds=[{
"amount_refunded": float(0),
"payment_record_refund": {
"payment_record": "string",
"refund_group": "string",
},
"refund": "string",
"type": "string",
}],
shipping_cost={
"amount_subtotal": float(0),
"amount_tax": float(0),
"amount_total": float(0),
"shipping_rate": "string",
"taxes": [{
"amount": float(0),
"rate": "string",
"taxability_reason": "string",
"taxable_amount": float(0),
}],
})
const creditNoteResource = new stripe.CreditNote("creditNoteResource", {
invoice: "string",
amount: 0,
creditAmount: 0,
effectiveAt: 0,
emailType: "string",
memo: "string",
metadata: {
string: "string",
},
outOfBandAmount: 0,
reason: "string",
refundAmount: 0,
refunds: [{
amountRefunded: 0,
paymentRecordRefund: {
paymentRecord: "string",
refundGroup: "string",
},
refund: "string",
type: "string",
}],
shippingCost: {
amountSubtotal: 0,
amountTax: 0,
amountTotal: 0,
shippingRate: "string",
taxes: [{
amount: 0,
rate: "string",
taxabilityReason: "string",
taxableAmount: 0,
}],
},
});
type: stripe:CreditNote
properties:
amount: 0
creditAmount: 0
effectiveAt: 0
emailType: string
invoice: string
memo: string
metadata:
string: string
outOfBandAmount: 0
reason: string
refundAmount: 0
refunds:
- amountRefunded: 0
paymentRecordRefund:
paymentRecord: string
refundGroup: string
refund: string
type: string
shippingCost:
amountSubtotal: 0
amountTax: 0
amountTotal: 0
shippingRate: string
taxes:
- amount: 0
rate: string
taxabilityReason: string
taxableAmount: 0
CreditNote Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CreditNote resource accepts the following input properties:
- Invoice string
- ID of the invoice.
- Amount double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- Credit
Amount double - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- Effective
At double - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - Email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - Memo string
- Customer-facing text that appears on the credit note PDF.
- Metadata Dictionary<string, string>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- Out
Of doubleBand Amount - Amount that was credited outside of Stripe.
- Reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - Refund
Amount double - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- Refunds
List<Credit
Note Refund> - Refunds related to this credit note.
- Shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- Invoice string
- ID of the invoice.
- Amount float64
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- Credit
Amount float64 - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- Effective
At float64 - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - Email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - Memo string
- Customer-facing text that appears on the credit note PDF.
- Metadata map[string]string
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- Out
Of float64Band Amount - Amount that was credited outside of Stripe.
- Reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - Refund
Amount float64 - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- Refunds
[]Credit
Note Refund Args - Refunds related to this credit note.
- Shipping
Cost CreditNote Shipping Cost Args - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- invoice string
- ID of the invoice.
- amount number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- credit_
amount number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- effective_
at number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email_
type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - memo string
- Customer-facing text that appears on the credit note PDF.
- metadata map(string)
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- out_
of_ numberband_ amount - Amount that was credited outside of Stripe.
- reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund_
amount number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds list(object)
- Refunds related to this credit note.
- shipping_
cost object - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- invoice String
- ID of the invoice.
- amount Double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- credit
Amount Double - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- effective
At Double - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type String - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - memo String
- Customer-facing text that appears on the credit note PDF.
- metadata Map<String,String>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- out
Of DoubleBand Amount - Amount that was credited outside of Stripe.
- reason String
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount Double - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
List<Credit
Note Refund> - Refunds related to this credit note.
- shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- invoice string
- ID of the invoice.
- amount number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- credit
Amount number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- effective
At number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - memo string
- Customer-facing text that appears on the credit note PDF.
- metadata {[key: string]: string}
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- out
Of numberBand Amount - Amount that was credited outside of Stripe.
- reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
Credit
Note Refund[] - Refunds related to this credit note.
- shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- invoice str
- ID of the invoice.
- amount float
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- credit_
amount float - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- effective_
at float - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email_
type str - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - memo str
- Customer-facing text that appears on the credit note PDF.
- metadata Mapping[str, str]
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- out_
of_ floatband_ amount - Amount that was credited outside of Stripe.
- reason str
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund_
amount float - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
Sequence[Credit
Note Refund Args] - Refunds related to this credit note.
- shipping_
cost CreditNote Shipping Cost Args - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- invoice String
- ID of the invoice.
- amount Number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- credit
Amount Number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- effective
At Number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type String - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - memo String
- Customer-facing text that appears on the credit note PDF.
- metadata Map<String>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- out
Of NumberBand Amount - Amount that was credited outside of Stripe.
- reason String
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount Number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds List<Property Map>
- Refunds related to this credit note.
- shipping
Cost Property Map - The details of the cost of shipping, including the ShippingRate applied to the invoice.
Outputs
All input properties are implicitly available as output properties. Additionally, the CreditNote resource produces the following output properties:
- Amount
Shipping double - This is the sum of all the shipping amounts.
- Created double
- Time at which the object was created. Measured in seconds since the Unix epoch.
- Currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- Customer string
- ID of the customer.
- Customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- Discount
Amount double - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- Discount
Amounts List<CreditNote Discount Amount> - The aggregate amounts calculated per discount for all line items.
- Id string
- The provider-assigned unique ID for this managed resource.
- Livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - Number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- Object string
- String representing the object's type. Objects of the same type share the same value.
- Post
Payment doubleAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- Pre
Payment doubleAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - Pretax
Credit List<CreditAmounts Note Pretax Credit Amount> - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- Status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - Subtotal double
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- Subtotal
Excluding doubleTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- Total double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- Total
Excluding doubleTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- Total
Taxes List<CreditNote Total Tax> - The aggregate tax information for all line items.
- Type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - Voided
At double - The time that the credit note was voided.
- Amount
Shipping float64 - This is the sum of all the shipping amounts.
- Created float64
- Time at which the object was created. Measured in seconds since the Unix epoch.
- Currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- Customer string
- ID of the customer.
- Customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- Discount
Amount float64 - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- Discount
Amounts []CreditNote Discount Amount - The aggregate amounts calculated per discount for all line items.
- Id string
- The provider-assigned unique ID for this managed resource.
- Livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - Number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- Object string
- String representing the object's type. Objects of the same type share the same value.
- Post
Payment float64Amount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- Pre
Payment float64Amount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - Pretax
Credit []CreditAmounts Note Pretax Credit Amount - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- Status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - Subtotal float64
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- Subtotal
Excluding float64Tax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- Total float64
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- Total
Excluding float64Tax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- Total
Taxes []CreditNote Total Tax - The aggregate tax information for all line items.
- Type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - Voided
At float64 - The time that the credit note was voided.
- amount_
shipping number - This is the sum of all the shipping amounts.
- created number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer string
- ID of the customer.
- customer_
balance_ stringtransaction - Customer balance transaction related to this credit note.
- discount_
amount number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount_
amounts list(object) - The aggregate amounts calculated per discount for all line items.
- id string
- The provider-assigned unique ID for this managed resource.
- livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object string
- String representing the object's type. Objects of the same type share the same value.
- post_
payment_ numberamount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre_
payment_ numberamount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax_
credit_ list(object)amounts - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal_
excluding_ numbertax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total_
excluding_ numbertax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total_
taxes list(object) - The aggregate tax information for all line items.
- type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided_
at number - The time that the credit note was voided.
- amount
Shipping Double - This is the sum of all the shipping amounts.
- created Double
- Time at which the object was created. Measured in seconds since the Unix epoch.
- currency String
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer String
- ID of the customer.
- customer
Balance StringTransaction - Customer balance transaction related to this credit note.
- discount
Amount Double - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts List<CreditNote Discount Amount> - The aggregate amounts calculated per discount for all line items.
- id String
- The provider-assigned unique ID for this managed resource.
- livemode Boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - number String
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object String
- String representing the object's type. Objects of the same type share the same value.
- post
Payment DoubleAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment DoubleAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit List<CreditAmounts Note Pretax Credit Amount> - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- status String
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal Double
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding DoubleTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total Double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding DoubleTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes List<CreditNote Total Tax> - The aggregate tax information for all line items.
- type String
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At Double - The time that the credit note was voided.
- amount
Shipping number - This is the sum of all the shipping amounts.
- created number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer string
- ID of the customer.
- customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- discount
Amount number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts CreditNote Discount Amount[] - The aggregate amounts calculated per discount for all line items.
- id string
- The provider-assigned unique ID for this managed resource.
- livemode boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object string
- String representing the object's type. Objects of the same type share the same value.
- post
Payment numberAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment numberAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit CreditAmounts Note Pretax Credit Amount[] - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding numberTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding numberTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes CreditNote Total Tax[] - The aggregate tax information for all line items.
- type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At number - The time that the credit note was voided.
- amount_
shipping float - This is the sum of all the shipping amounts.
- created float
- Time at which the object was created. Measured in seconds since the Unix epoch.
- currency str
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer str
- ID of the customer.
- customer_
balance_ strtransaction - Customer balance transaction related to this credit note.
- discount_
amount float - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount_
amounts Sequence[CreditNote Discount Amount] - The aggregate amounts calculated per discount for all line items.
- id str
- The provider-assigned unique ID for this managed resource.
- livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - number str
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object str
- String representing the object's type. Objects of the same type share the same value.
- post_
payment_ floatamount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre_
payment_ floatamount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax_
credit_ Sequence[Creditamounts Note Pretax Credit Amount] - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- status str
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal float
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal_
excluding_ floattax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total float
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total_
excluding_ floattax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total_
taxes Sequence[CreditNote Total Tax] - The aggregate tax information for all line items.
- type str
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided_
at float - The time that the credit note was voided.
- amount
Shipping Number - This is the sum of all the shipping amounts.
- created Number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- currency String
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer String
- ID of the customer.
- customer
Balance StringTransaction - Customer balance transaction related to this credit note.
- discount
Amount Number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts List<Property Map> - The aggregate amounts calculated per discount for all line items.
- id String
- The provider-assigned unique ID for this managed resource.
- livemode Boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - number String
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object String
- String representing the object's type. Objects of the same type share the same value.
- post
Payment NumberAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment NumberAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit List<Property Map>Amounts - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- status String
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal Number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding NumberTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total Number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding NumberTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes List<Property Map> - The aggregate tax information for all line items.
- type String
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At Number - The time that the credit note was voided.
Look up Existing CreditNote Resource
Get an existing CreditNote resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CreditNoteState, opts?: CustomResourceOptions): CreditNote@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
amount: Optional[float] = None,
amount_shipping: Optional[float] = None,
created: Optional[float] = None,
credit_amount: Optional[float] = None,
currency: Optional[str] = None,
customer: Optional[str] = None,
customer_balance_transaction: Optional[str] = None,
discount_amount: Optional[float] = None,
discount_amounts: Optional[Sequence[CreditNoteDiscountAmountArgs]] = None,
effective_at: Optional[float] = None,
email_type: Optional[str] = None,
invoice: Optional[str] = None,
livemode: Optional[bool] = None,
memo: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
number: Optional[str] = None,
object: Optional[str] = None,
out_of_band_amount: Optional[float] = None,
post_payment_amount: Optional[float] = None,
pre_payment_amount: Optional[float] = None,
pretax_credit_amounts: Optional[Sequence[CreditNotePretaxCreditAmountArgs]] = None,
reason: Optional[str] = None,
refund_amount: Optional[float] = None,
refunds: Optional[Sequence[CreditNoteRefundArgs]] = None,
shipping_cost: Optional[CreditNoteShippingCostArgs] = None,
status: Optional[str] = None,
subtotal: Optional[float] = None,
subtotal_excluding_tax: Optional[float] = None,
total: Optional[float] = None,
total_excluding_tax: Optional[float] = None,
total_taxes: Optional[Sequence[CreditNoteTotalTaxArgs]] = None,
type: Optional[str] = None,
voided_at: Optional[float] = None) -> CreditNotefunc GetCreditNote(ctx *Context, name string, id IDInput, state *CreditNoteState, opts ...ResourceOption) (*CreditNote, error)public static CreditNote Get(string name, Input<string> id, CreditNoteState? state, CustomResourceOptions? opts = null)public static CreditNote get(String name, Output<String> id, CreditNoteState state, CustomResourceOptions options)resources: _: type: stripe:CreditNote get: id: ${id}import {
to = stripe_credit_note.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Amount double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- Amount
Shipping double - This is the sum of all the shipping amounts.
- Created double
- Time at which the object was created. Measured in seconds since the Unix epoch.
- Credit
Amount double - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- Currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- Customer string
- ID of the customer.
- Customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- Discount
Amount double - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- Discount
Amounts List<CreditNote Discount Amount> - The aggregate amounts calculated per discount for all line items.
- Effective
At double - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - Email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - Invoice string
- ID of the invoice.
- Livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - Memo string
- Customer-facing text that appears on the credit note PDF.
- Metadata Dictionary<string, string>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- Number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- Object string
- String representing the object's type. Objects of the same type share the same value.
- Out
Of doubleBand Amount - Amount that was credited outside of Stripe.
- Post
Payment doubleAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- Pre
Payment doubleAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - Pretax
Credit List<CreditAmounts Note Pretax Credit Amount> - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- Reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - Refund
Amount double - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- Refunds
List<Credit
Note Refund> - Refunds related to this credit note.
- Shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- Status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - Subtotal double
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- Subtotal
Excluding doubleTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- Total double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- Total
Excluding doubleTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- Total
Taxes List<CreditNote Total Tax> - The aggregate tax information for all line items.
- Type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - Voided
At double - The time that the credit note was voided.
- Amount float64
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- Amount
Shipping float64 - This is the sum of all the shipping amounts.
- Created float64
- Time at which the object was created. Measured in seconds since the Unix epoch.
- Credit
Amount float64 - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- Currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- Customer string
- ID of the customer.
- Customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- Discount
Amount float64 - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- Discount
Amounts []CreditNote Discount Amount Args - The aggregate amounts calculated per discount for all line items.
- Effective
At float64 - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - Email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - Invoice string
- ID of the invoice.
- Livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - Memo string
- Customer-facing text that appears on the credit note PDF.
- Metadata map[string]string
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- Number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- Object string
- String representing the object's type. Objects of the same type share the same value.
- Out
Of float64Band Amount - Amount that was credited outside of Stripe.
- Post
Payment float64Amount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- Pre
Payment float64Amount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - Pretax
Credit []CreditAmounts Note Pretax Credit Amount Args - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- Reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - Refund
Amount float64 - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- Refunds
[]Credit
Note Refund Args - Refunds related to this credit note.
- Shipping
Cost CreditNote Shipping Cost Args - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- Status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - Subtotal float64
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- Subtotal
Excluding float64Tax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- Total float64
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- Total
Excluding float64Tax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- Total
Taxes []CreditNote Total Tax Args - The aggregate tax information for all line items.
- Type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - Voided
At float64 - The time that the credit note was voided.
- amount number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- amount_
shipping number - This is the sum of all the shipping amounts.
- created number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- credit_
amount number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer string
- ID of the customer.
- customer_
balance_ stringtransaction - Customer balance transaction related to this credit note.
- discount_
amount number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount_
amounts list(object) - The aggregate amounts calculated per discount for all line items.
- effective_
at number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email_
type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - invoice string
- ID of the invoice.
- livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - memo string
- Customer-facing text that appears on the credit note PDF.
- metadata map(string)
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object string
- String representing the object's type. Objects of the same type share the same value.
- out_
of_ numberband_ amount - Amount that was credited outside of Stripe.
- post_
payment_ numberamount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre_
payment_ numberamount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax_
credit_ list(object)amounts - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund_
amount number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds list(object)
- Refunds related to this credit note.
- shipping_
cost object - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal_
excluding_ numbertax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total_
excluding_ numbertax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total_
taxes list(object) - The aggregate tax information for all line items.
- type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided_
at number - The time that the credit note was voided.
- amount Double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- amount
Shipping Double - This is the sum of all the shipping amounts.
- created Double
- Time at which the object was created. Measured in seconds since the Unix epoch.
- credit
Amount Double - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- currency String
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer String
- ID of the customer.
- customer
Balance StringTransaction - Customer balance transaction related to this credit note.
- discount
Amount Double - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts List<CreditNote Discount Amount> - The aggregate amounts calculated per discount for all line items.
- effective
At Double - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type String - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - invoice String
- ID of the invoice.
- livemode Boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - memo String
- Customer-facing text that appears on the credit note PDF.
- metadata Map<String,String>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- number String
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object String
- String representing the object's type. Objects of the same type share the same value.
- out
Of DoubleBand Amount - Amount that was credited outside of Stripe.
- post
Payment DoubleAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment DoubleAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit List<CreditAmounts Note Pretax Credit Amount> - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- reason String
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount Double - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
List<Credit
Note Refund> - Refunds related to this credit note.
- shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- status String
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal Double
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding DoubleTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total Double
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding DoubleTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes List<CreditNote Total Tax> - The aggregate tax information for all line items.
- type String
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At Double - The time that the credit note was voided.
- amount number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- amount
Shipping number - This is the sum of all the shipping amounts.
- created number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- credit
Amount number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- currency string
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer string
- ID of the customer.
- customer
Balance stringTransaction - Customer balance transaction related to this credit note.
- discount
Amount number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts CreditNote Discount Amount[] - The aggregate amounts calculated per discount for all line items.
- effective
At number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type string - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - invoice string
- ID of the invoice.
- livemode boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - memo string
- Customer-facing text that appears on the credit note PDF.
- metadata {[key: string]: string}
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- number string
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object string
- String representing the object's type. Objects of the same type share the same value.
- out
Of numberBand Amount - Amount that was credited outside of Stripe.
- post
Payment numberAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment numberAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit CreditAmounts Note Pretax Credit Amount[] - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- reason string
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
Credit
Note Refund[] - Refunds related to this credit note.
- shipping
Cost CreditNote Shipping Cost - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- status string
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding numberTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding numberTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes CreditNote Total Tax[] - The aggregate tax information for all line items.
- type string
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At number - The time that the credit note was voided.
- amount float
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- amount_
shipping float - This is the sum of all the shipping amounts.
- created float
- Time at which the object was created. Measured in seconds since the Unix epoch.
- credit_
amount float - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- currency str
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer str
- ID of the customer.
- customer_
balance_ strtransaction - Customer balance transaction related to this credit note.
- discount_
amount float - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount_
amounts Sequence[CreditNote Discount Amount Args] - The aggregate amounts calculated per discount for all line items.
- effective_
at float - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email_
type str - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - invoice str
- ID of the invoice.
- livemode bool
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - memo str
- Customer-facing text that appears on the credit note PDF.
- metadata Mapping[str, str]
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- number str
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object str
- String representing the object's type. Objects of the same type share the same value.
- out_
of_ floatband_ amount - Amount that was credited outside of Stripe.
- post_
payment_ floatamount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre_
payment_ floatamount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax_
credit_ Sequence[Creditamounts Note Pretax Credit Amount Args] - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- reason str
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund_
amount float - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds
Sequence[Credit
Note Refund Args] - Refunds related to this credit note.
- shipping_
cost CreditNote Shipping Cost Args - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- status str
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal float
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal_
excluding_ floattax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total float
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total_
excluding_ floattax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total_
taxes Sequence[CreditNote Total Tax Args] - The aggregate tax information for all line items.
- type str
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided_
at float - The time that the credit note was voided.
- amount Number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax.
- amount
Shipping Number - This is the sum of all the shipping amounts.
- created Number
- Time at which the object was created. Measured in seconds since the Unix epoch.
- credit
Amount Number - The integer amount in cents (or local equivalent) representing the amount to credit the customer's balance, which will be automatically applied to their next invoice.
- currency String
- Three-letter ISO currency code, in lowercase. Must be a supported currency.
- customer String
- ID of the customer.
- customer
Balance StringTransaction - Customer balance transaction related to this credit note.
- discount
Amount Number - The integer amount in cents (or local equivalent) representing the total amount of discount that was credited.
- discount
Amounts List<Property Map> - The aggregate amounts calculated per discount for all line items.
- effective
At Number - The date when this credit note is in effect. Same as
createdunless overwritten. When defined, this value replaces the system-generated 'Date of issue' printed on the credit note PDF. - email
Type String - Type of email to send to the customer, one of
credit_noteornoneand the default iscredit_note. - invoice String
- ID of the invoice.
- livemode Boolean
- If the object exists in live mode, the value is
true. If the object exists in test mode, the value isfalse. - memo String
- Customer-facing text that appears on the credit note PDF.
- metadata Map<String>
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- number String
- A unique number that identifies this particular credit note and appears on the PDF of the credit note and its associated invoice.
- object String
- String representing the object's type. Objects of the same type share the same value.
- out
Of NumberBand Amount - Amount that was credited outside of Stripe.
- post
Payment NumberAmount - The amount of the credit note that was refunded to the customer, credited to the customer's balance, credited outside of Stripe, or any combination thereof.
- pre
Payment NumberAmount - The amount of the credit note by which the invoice's
amount_remainingandamount_duewere reduced. - pretax
Credit List<Property Map>Amounts - The pretax credit amounts (ex: discount, credit grants, etc) for all line items.
- reason String
- Reason for issuing this credit note, one of
duplicate,fraudulent,order_change, orproduct_unsatisfactory - refund
Amount Number - The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.
- refunds List<Property Map>
- Refunds related to this credit note.
- shipping
Cost Property Map - The details of the cost of shipping, including the ShippingRate applied to the invoice.
- status String
- Status of this credit note, one of
issuedorvoid. Learn more about voiding credit notes. - subtotal Number
- The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding exclusive tax and invoice level discounts.
- subtotal
Excluding NumberTax - The integer amount in cents (or local equivalent) representing the amount of the credit note, excluding all tax and invoice level discounts.
- total Number
- The integer amount in cents (or local equivalent) representing the total amount of the credit note, including tax and all discount.
- total
Excluding NumberTax - The integer amount in cents (or local equivalent) representing the total amount of the credit note, excluding tax, but including discounts.
- total
Taxes List<Property Map> - The aggregate tax information for all line items.
- type String
- Type of this credit note, one of
pre_paymentorpost_payment. Apre_paymentcredit note means it was issued when the invoice was open. Apost_paymentcredit note means it was issued when the invoice was paid. - voided
At Number - The time that the credit note was voided.
Supporting Types
CreditNoteDiscountAmount, CreditNoteDiscountAmountArgs
CreditNotePretaxCreditAmount, CreditNotePretaxCreditAmountArgs
- Amount double
- The amount, in cents (or local equivalent), of the pretax credit amount.
- Credit
Balance stringTransaction - The credit balance transaction that was applied to get this pretax credit amount.
- Discount string
- The discount that was applied to get this pretax credit amount.
- Type string
- Type of the pretax credit amount referenced.
- Amount float64
- The amount, in cents (or local equivalent), of the pretax credit amount.
- Credit
Balance stringTransaction - The credit balance transaction that was applied to get this pretax credit amount.
- Discount string
- The discount that was applied to get this pretax credit amount.
- Type string
- Type of the pretax credit amount referenced.
- amount number
- The amount, in cents (or local equivalent), of the pretax credit amount.
- credit_
balance_ stringtransaction - The credit balance transaction that was applied to get this pretax credit amount.
- discount string
- The discount that was applied to get this pretax credit amount.
- type string
- Type of the pretax credit amount referenced.
- amount Double
- The amount, in cents (or local equivalent), of the pretax credit amount.
- credit
Balance StringTransaction - The credit balance transaction that was applied to get this pretax credit amount.
- discount String
- The discount that was applied to get this pretax credit amount.
- type String
- Type of the pretax credit amount referenced.
- amount number
- The amount, in cents (or local equivalent), of the pretax credit amount.
- credit
Balance stringTransaction - The credit balance transaction that was applied to get this pretax credit amount.
- discount string
- The discount that was applied to get this pretax credit amount.
- type string
- Type of the pretax credit amount referenced.
- amount float
- The amount, in cents (or local equivalent), of the pretax credit amount.
- credit_
balance_ strtransaction - The credit balance transaction that was applied to get this pretax credit amount.
- discount str
- The discount that was applied to get this pretax credit amount.
- type str
- Type of the pretax credit amount referenced.
- amount Number
- The amount, in cents (or local equivalent), of the pretax credit amount.
- credit
Balance StringTransaction - The credit balance transaction that was applied to get this pretax credit amount.
- discount String
- The discount that was applied to get this pretax credit amount.
- type String
- Type of the pretax credit amount referenced.
CreditNoteRefund, CreditNoteRefundArgs
- Amount
Refunded double - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- Payment
Record CreditRefund Note Refund Payment Record Refund - The PaymentRecord refund details associated with this credit note refund.
- Refund string
- ID of the refund.
- Type string
- Type of the refund, one of
refundorpayment_record_refund.
- Amount
Refunded float64 - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- Payment
Record CreditRefund Note Refund Payment Record Refund - The PaymentRecord refund details associated with this credit note refund.
- Refund string
- ID of the refund.
- Type string
- Type of the refund, one of
refundorpayment_record_refund.
- amount_
refunded number - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- payment_
record_ objectrefund - The PaymentRecord refund details associated with this credit note refund.
- refund string
- ID of the refund.
- type string
- Type of the refund, one of
refundorpayment_record_refund.
- amount
Refunded Double - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- payment
Record CreditRefund Note Refund Payment Record Refund - The PaymentRecord refund details associated with this credit note refund.
- refund String
- ID of the refund.
- type String
- Type of the refund, one of
refundorpayment_record_refund.
- amount
Refunded number - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- payment
Record CreditRefund Note Refund Payment Record Refund - The PaymentRecord refund details associated with this credit note refund.
- refund string
- ID of the refund.
- type string
- Type of the refund, one of
refundorpayment_record_refund.
- amount_
refunded float - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- payment_
record_ Creditrefund Note Refund Payment Record Refund - The PaymentRecord refund details associated with this credit note refund.
- refund str
- ID of the refund.
- type str
- Type of the refund, one of
refundorpayment_record_refund.
- amount
Refunded Number - Amount of the refund that applies to this credit note, in cents (or local equivalent).
- payment
Record Property MapRefund - The PaymentRecord refund details associated with this credit note refund.
- refund String
- ID of the refund.
- type String
- Type of the refund, one of
refundorpayment_record_refund.
CreditNoteRefundPaymentRecordRefund, CreditNoteRefundPaymentRecordRefundArgs
- Payment
Record string - ID of the payment record.
- Refund
Group string - ID of the refund group.
- Payment
Record string - ID of the payment record.
- Refund
Group string - ID of the refund group.
- payment_
record string - ID of the payment record.
- refund_
group string - ID of the refund group.
- payment
Record String - ID of the payment record.
- refund
Group String - ID of the refund group.
- payment
Record string - ID of the payment record.
- refund
Group string - ID of the refund group.
- payment_
record str - ID of the payment record.
- refund_
group str - ID of the refund group.
- payment
Record String - ID of the payment record.
- refund
Group String - ID of the refund group.
CreditNoteShippingCost, CreditNoteShippingCostArgs
- Amount
Subtotal double - Total shipping cost before any taxes are applied.
- Amount
Tax double - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- Amount
Total double - Total shipping cost after taxes are applied.
- Shipping
Rate string - The ID of the ShippingRate for this invoice.
- Taxes
List<Credit
Note Shipping Cost Tax> - The taxes applied to the shipping rate.
- Amount
Subtotal float64 - Total shipping cost before any taxes are applied.
- Amount
Tax float64 - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- Amount
Total float64 - Total shipping cost after taxes are applied.
- Shipping
Rate string - The ID of the ShippingRate for this invoice.
- Taxes
[]Credit
Note Shipping Cost Tax - The taxes applied to the shipping rate.
- amount_
subtotal number - Total shipping cost before any taxes are applied.
- amount_
tax number - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- amount_
total number - Total shipping cost after taxes are applied.
- shipping_
rate string - The ID of the ShippingRate for this invoice.
- taxes list(object)
- The taxes applied to the shipping rate.
- amount
Subtotal Double - Total shipping cost before any taxes are applied.
- amount
Tax Double - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- amount
Total Double - Total shipping cost after taxes are applied.
- shipping
Rate String - The ID of the ShippingRate for this invoice.
- taxes
List<Credit
Note Shipping Cost Tax> - The taxes applied to the shipping rate.
- amount
Subtotal number - Total shipping cost before any taxes are applied.
- amount
Tax number - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- amount
Total number - Total shipping cost after taxes are applied.
- shipping
Rate string - The ID of the ShippingRate for this invoice.
- taxes
Credit
Note Shipping Cost Tax[] - The taxes applied to the shipping rate.
- amount_
subtotal float - Total shipping cost before any taxes are applied.
- amount_
tax float - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- amount_
total float - Total shipping cost after taxes are applied.
- shipping_
rate str - The ID of the ShippingRate for this invoice.
- taxes
Sequence[Credit
Note Shipping Cost Tax] - The taxes applied to the shipping rate.
- amount
Subtotal Number - Total shipping cost before any taxes are applied.
- amount
Tax Number - Total tax amount applied due to shipping costs. If no tax was applied, defaults to 0.
- amount
Total Number - Total shipping cost after taxes are applied.
- shipping
Rate String - The ID of the ShippingRate for this invoice.
- taxes List<Property Map>
- The taxes applied to the shipping rate.
CreditNoteShippingCostTax, CreditNoteShippingCostTaxArgs
- Amount double
- Amount of tax applied for this rate.
- Rate string
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- Taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- Taxable
Amount double - The amount on which tax is calculated, in cents (or local equivalent).
- Amount float64
- Amount of tax applied for this rate.
- Rate string
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- Taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- Taxable
Amount float64 - The amount on which tax is calculated, in cents (or local equivalent).
- amount number
- Amount of tax applied for this rate.
- rate string
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- taxability_
reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable_
amount number - The amount on which tax is calculated, in cents (or local equivalent).
- amount Double
- Amount of tax applied for this rate.
- rate String
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- taxability
Reason String - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount Double - The amount on which tax is calculated, in cents (or local equivalent).
- amount number
- Amount of tax applied for this rate.
- rate string
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount number - The amount on which tax is calculated, in cents (or local equivalent).
- amount float
- Amount of tax applied for this rate.
- rate str
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- taxability_
reason str - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable_
amount float - The amount on which tax is calculated, in cents (or local equivalent).
- amount Number
- Amount of tax applied for this rate.
- rate String
- Tax rates can be applied to invoices, subscriptions and Checkout Sessions to collect tax.
- taxability
Reason String - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount Number - The amount on which tax is calculated, in cents (or local equivalent).
CreditNoteTotalTax, CreditNoteTotalTaxArgs
- Amount double
- The amount of the tax, in cents (or local equivalent).
- Tax
Behavior string - Whether this tax is inclusive or exclusive.
- Tax
Rate CreditDetails Note Total Tax Tax Rate Details - Additional details about the tax rate. Only present when
typeistax_rate_details. - Taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- Taxable
Amount double - The amount on which tax is calculated, in cents (or local equivalent).
- Type string
- The type of tax information.
- Amount float64
- The amount of the tax, in cents (or local equivalent).
- Tax
Behavior string - Whether this tax is inclusive or exclusive.
- Tax
Rate CreditDetails Note Total Tax Tax Rate Details - Additional details about the tax rate. Only present when
typeistax_rate_details. - Taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- Taxable
Amount float64 - The amount on which tax is calculated, in cents (or local equivalent).
- Type string
- The type of tax information.
- amount number
- The amount of the tax, in cents (or local equivalent).
- tax_
behavior string - Whether this tax is inclusive or exclusive.
- tax_
rate_ objectdetails - Additional details about the tax rate. Only present when
typeistax_rate_details. - taxability_
reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable_
amount number - The amount on which tax is calculated, in cents (or local equivalent).
- type string
- The type of tax information.
- amount Double
- The amount of the tax, in cents (or local equivalent).
- tax
Behavior String - Whether this tax is inclusive or exclusive.
- tax
Rate CreditDetails Note Total Tax Tax Rate Details - Additional details about the tax rate. Only present when
typeistax_rate_details. - taxability
Reason String - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount Double - The amount on which tax is calculated, in cents (or local equivalent).
- type String
- The type of tax information.
- amount number
- The amount of the tax, in cents (or local equivalent).
- tax
Behavior string - Whether this tax is inclusive or exclusive.
- tax
Rate CreditDetails Note Total Tax Tax Rate Details - Additional details about the tax rate. Only present when
typeistax_rate_details. - taxability
Reason string - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount number - The amount on which tax is calculated, in cents (or local equivalent).
- type string
- The type of tax information.
- amount float
- The amount of the tax, in cents (or local equivalent).
- tax_
behavior str - Whether this tax is inclusive or exclusive.
- tax_
rate_ Creditdetails Note Total Tax Tax Rate Details - Additional details about the tax rate. Only present when
typeistax_rate_details. - taxability_
reason str - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable_
amount float - The amount on which tax is calculated, in cents (or local equivalent).
- type str
- The type of tax information.
- amount Number
- The amount of the tax, in cents (or local equivalent).
- tax
Behavior String - Whether this tax is inclusive or exclusive.
- tax
Rate Property MapDetails - Additional details about the tax rate. Only present when
typeistax_rate_details. - taxability
Reason String - The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
- taxable
Amount Number - The amount on which tax is calculated, in cents (or local equivalent).
- type String
- The type of tax information.
CreditNoteTotalTaxTaxRateDetails, CreditNoteTotalTaxTaxRateDetailsArgs
- Tax
Rate string - ID of the tax rate
- Tax
Rate string - ID of the tax rate
- tax_
rate string - ID of the tax rate
- tax
Rate String - ID of the tax rate
- tax
Rate string - ID of the tax rate
- tax_
rate str - ID of the tax rate
- tax
Rate String - ID of the tax rate
Package Details
- Repository
- stripe stripe/terraform-provider-stripe
- License
- Notes
- This Pulumi package is based on the
stripeTerraform Provider.
published on Friday, Aug 14, 2026 by Pulumi