Class: Stripe::Checkout::SessionUpdateParams::InvoiceCreation::InvoiceData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionUpdateParams::InvoiceCreation::InvoiceData
- Defined in:
- lib/stripe/params/checkout/session_update_params.rb
Defined Under Namespace
Classes: Issuer
Instance Attribute Summary collapse
-
#issuer ⇒ Object
The connected account that issues the invoice.
Instance Method Summary collapse
-
#initialize(issuer: nil) ⇒ InvoiceData
constructor
A new instance of InvoiceData.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(issuer: nil) ⇒ InvoiceData
Returns a new instance of InvoiceData.
135 136 137 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 135 def initialize(issuer: nil) @issuer = issuer end |
Instance Attribute Details
#issuer ⇒ Object
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
133 134 135 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 133 def issuer @issuer end |