Class: Stripe::Checkout::Session::CreateParams::InvoiceCreation::InvoiceData::Issuer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::Session::CreateParams::InvoiceCreation::InvoiceData::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.
1384 1385 1386 1387 |
# File 'lib/stripe/resources/checkout/session.rb', line 1384 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`.
1380 1381 1382 |
# File 'lib/stripe/resources/checkout/session.rb', line 1380 def account @account end |
#type ⇒ Object
Type of the account referenced in the request.
1382 1383 1384 |
# File 'lib/stripe/resources/checkout/session.rb', line 1382 def type @type end |