Class: Stripe::Checkout::SessionUpdateParams::SubscriptionData::InvoiceSettings::Issuer

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



387
388
389
390
# File 'lib/stripe/params/checkout/session_update_params.rb', line 387

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

Instance Attribute Details

#accountObject

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



383
384
385
# File 'lib/stripe/params/checkout/session_update_params.rb', line 383

def 
  @account
end

#typeObject

Type of the account referenced in the request.



385
386
387
# File 'lib/stripe/params/checkout/session_update_params.rb', line 385

def type
  @type
end