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.



1480
1481
1482
1483
# File 'lib/stripe/resources/checkout/session.rb', line 1480

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

Instance Attribute Details

#accountObject

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



1476
1477
1478
# File 'lib/stripe/resources/checkout/session.rb', line 1476

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1478
1479
1480
# File 'lib/stripe/resources/checkout/session.rb', line 1478

def type
  @type
end