Class: Stripe::Checkout::Session::CreateParams::SubscriptionData::InvoiceSettings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/checkout/session.rb

Defined Under Namespace

Classes: Issuer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(issuer: nil) ⇒ InvoiceSettings

Returns a new instance of InvoiceSettings.



2961
2962
2963
# File 'lib/stripe/resources/checkout/session.rb', line 2961

def initialize(issuer: nil)
  @issuer = issuer
end

Instance Attribute Details

#issuerObject

The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.



2959
2960
2961
# File 'lib/stripe/resources/checkout/session.rb', line 2959

def issuer
  @issuer
end