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.



1471
1472
1473
1474
# File 'lib/stripe/resources/checkout/session.rb', line 1471

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

Instance Attribute Details

#accountObject

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



1467
1468
1469
# File 'lib/stripe/resources/checkout/session.rb', line 1467

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1469
1470
1471
# File 'lib/stripe/resources/checkout/session.rb', line 1469

def type
  @type
end