Class: Stripe::Invoice::UpdateParams::Issuer

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



516
517
518
519
# File 'lib/stripe/resources/invoice.rb', line 516

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

Instance Attribute Details

#accountObject

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



512
513
514
# File 'lib/stripe/resources/invoice.rb', line 512

def 
  @account
end

#typeObject

Type of the account referenced in the request.



514
515
516
# File 'lib/stripe/resources/invoice.rb', line 514

def type
  @type
end