Class: Stripe::Checkout::SessionCreateParams::SubscriptionData::InvoiceSettings::Issuer

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



2128
2129
2130
2131
# File 'lib/stripe/params/checkout/session_create_params.rb', line 2128

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

Instance Attribute Details

#accountObject

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



2124
2125
2126
# File 'lib/stripe/params/checkout/session_create_params.rb', line 2124

def 
  @account
end

#typeObject

Type of the account referenced in the request.



2126
2127
2128
# File 'lib/stripe/params/checkout/session_create_params.rb', line 2126

def type
  @type
end