Class: Stripe::InvoiceCreateParams::Issuer

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



74
75
76
77
# File 'lib/stripe/params/invoice_create_params.rb', line 74

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

Instance Attribute Details

#accountObject

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



70
71
72
# File 'lib/stripe/params/invoice_create_params.rb', line 70

def 
  @account
end

#typeObject

Type of the account referenced in the request.



72
73
74
# File 'lib/stripe/params/invoice_create_params.rb', line 72

def type
  @type
end