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.



1452
1453
1454
1455
# File 'lib/stripe/resources/checkout/session.rb', line 1452

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

Instance Attribute Details

#accountObject

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



1448
1449
1450
# File 'lib/stripe/resources/checkout/session.rb', line 1448

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1450
1451
1452
# File 'lib/stripe/resources/checkout/session.rb', line 1450

def type
  @type
end