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.



1395
1396
1397
1398
# File 'lib/stripe/resources/checkout/session.rb', line 1395

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

Instance Attribute Details

#accountObject

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



1391
1392
1393
# File 'lib/stripe/resources/checkout/session.rb', line 1391

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1393
1394
1395
# File 'lib/stripe/resources/checkout/session.rb', line 1393

def type
  @type
end