Class: Stripe::InvoiceUpdateParams::Issuer

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



62
63
64
65
# File 'lib/stripe/params/invoice_update_params.rb', line 62

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

Instance Attribute Details

#accountObject

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



58
59
60
# File 'lib/stripe/params/invoice_update_params.rb', line 58

def 
  @account
end

#typeObject

Type of the account referenced in the request.



60
61
62
# File 'lib/stripe/params/invoice_update_params.rb', line 60

def type
  @type
end