Class: Stripe::SubscriptionUpdateParams::InvoiceSettings::Issuer

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



294
295
296
297
# File 'lib/stripe/params/subscription_update_params.rb', line 294

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

Instance Attribute Details

#accountObject

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



290
291
292
# File 'lib/stripe/params/subscription_update_params.rb', line 290

def 
  @account
end

#typeObject

Type of the account referenced in the request.



292
293
294
# File 'lib/stripe/params/subscription_update_params.rb', line 292

def type
  @type
end