Class: Stripe::Checkout::SessionCreateParams::SubscriptionData::InvoiceSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionCreateParams::SubscriptionData::InvoiceSettings
- Defined in:
- lib/stripe/params/checkout/session_create_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) ⇒ InvoiceSettings
constructor
A new instance of InvoiceSettings.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(issuer: nil) ⇒ InvoiceSettings
Returns a new instance of InvoiceSettings.
2198 2199 2200 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 2198 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.
2196 2197 2198 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 2196 def issuer @issuer end |