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

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/checkout/session_service.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.



385
386
387
388
# File 'lib/stripe/services/checkout/session_service.rb', line 385

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

Instance Attribute Details

#accountObject

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



381
382
383
# File 'lib/stripe/services/checkout/session_service.rb', line 381

def 
  @account
end

#typeObject

Type of the account referenced in the request.



383
384
385
# File 'lib/stripe/services/checkout/session_service.rb', line 383

def type
  @type
end