Class: Stripe::InvoiceUpdateParams::Issuer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::InvoiceUpdateParams::Issuer
- Defined in:
- lib/stripe/params/invoice_update_params.rb
Instance Attribute Summary collapse
-
#account ⇒ Object
The connected account being referenced when ‘type` is `account`.
-
#type ⇒ Object
Type of the account referenced in the request.
Instance Method Summary collapse
-
#initialize(account: nil, type: nil) ⇒ Issuer
constructor
A new instance of Issuer.
Methods inherited from RequestParams
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 = account @type = type end |
Instance Attribute Details
#account ⇒ Object
The connected account being referenced when ‘type` is `account`.
58 59 60 |
# File 'lib/stripe/params/invoice_update_params.rb', line 58 def account @account end |
#type ⇒ Object
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 |