Class: Stripe::Checkout::Session::CreateParams::InvoiceCreation::InvoiceData::Issuer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account: nil, type: nil) ⇒ Issuer

Returns a new instance of Issuer.



1674
1675
1676
1677
# File 'lib/stripe/resources/checkout/session.rb', line 1674

def initialize(account: nil, type: nil)
  @account = 
  @type = type
end

Instance Attribute Details

#accountObject

The connected account being referenced when ‘type` is `account`.



1670
1671
1672
# File 'lib/stripe/resources/checkout/session.rb', line 1670

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1672
1673
1674
# File 'lib/stripe/resources/checkout/session.rb', line 1672

def type
  @type
end