Class: Stripe::Subscription::UpdateParams::InvoiceSettings::Issuer

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



549
550
551
552
# File 'lib/stripe/resources/subscription.rb', line 549

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

Instance Attribute Details

#accountObject

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



544
545
546
# File 'lib/stripe/resources/subscription.rb', line 544

def 
  @account
end

#typeObject

Type of the account referenced in the request.



547
548
549
# File 'lib/stripe/resources/subscription.rb', line 547

def type
  @type
end