Class: Stripe::InvoiceCreatePreviewParams::Issuer

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



291
292
293
294
# File 'lib/stripe/params/invoice_create_preview_params.rb', line 291

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

Instance Attribute Details

#accountObject

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



287
288
289
# File 'lib/stripe/params/invoice_create_preview_params.rb', line 287

def 
  @account
end

#typeObject

Type of the account referenced in the request.



289
290
291
# File 'lib/stripe/params/invoice_create_preview_params.rb', line 289

def type
  @type
end