Class: Stripe::PaymentLinkUpdateParams::InvoiceCreation::InvoiceData::Issuer

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



240
241
242
243
# File 'lib/stripe/params/payment_link_update_params.rb', line 240

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

Instance Attribute Details

#accountObject

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



236
237
238
# File 'lib/stripe/params/payment_link_update_params.rb', line 236

def 
  @account
end

#typeObject

Type of the account referenced in the request.



238
239
240
# File 'lib/stripe/params/payment_link_update_params.rb', line 238

def type
  @type
end