Class: Stripe::Checkout::Session::CreateParams::SubscriptionData::InvoiceSettings::Issuer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::Session::CreateParams::SubscriptionData::InvoiceSettings::Issuer
- Defined in:
- lib/stripe/resources/checkout/session.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.
3117 3118 3119 3120 |
# File 'lib/stripe/resources/checkout/session.rb', line 3117 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`.
3113 3114 3115 |
# File 'lib/stripe/resources/checkout/session.rb', line 3113 def account @account end |
#type ⇒ Object
Type of the account referenced in the request.
3115 3116 3117 |
# File 'lib/stripe/resources/checkout/session.rb', line 3115 def type @type end |