Class: Stripe::PaymentLinkCreateParams::InvoiceCreation::InvoiceData::Issuer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentLinkCreateParams::InvoiceCreation::InvoiceData::Issuer
- Defined in:
- lib/stripe/params/payment_link_create_params.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.
267 268 269 270 |
# File 'lib/stripe/params/payment_link_create_params.rb', line 267 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`.
263 264 265 |
# File 'lib/stripe/params/payment_link_create_params.rb', line 263 def account @account end |
#type ⇒ Object
Type of the account referenced in the request.
265 266 267 |
# File 'lib/stripe/params/payment_link_create_params.rb', line 265 def type @type end |