Class: Stripe::Checkout::SessionService::CreateParams::SubscriptionData::InvoiceSettings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/checkout/session_service.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.



1866
1867
1868
# File 'lib/stripe/services/checkout/session_service.rb', line 1866

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.



1864
1865
1866
# File 'lib/stripe/services/checkout/session_service.rb', line 1864

def issuer
  @issuer
end