Class: Stripe::Checkout::Session::CreateParams::SubscriptionData::InvoiceSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::Session::CreateParams::SubscriptionData::InvoiceSettings
- Defined in:
- lib/stripe/resources/checkout/session.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
Constructor Details
#initialize(issuer: nil) ⇒ InvoiceSettings
Returns a new instance of InvoiceSettings.
4297 4298 4299 |
# File 'lib/stripe/resources/checkout/session.rb', line 4297 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.
4295 4296 4297 |
# File 'lib/stripe/resources/checkout/session.rb', line 4295 def issuer @issuer end |