Class: Stripe::QuoteService::UpdateParams::InvoiceSettings::Issuer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::QuoteService::UpdateParams::InvoiceSettings::Issuer
- Defined in:
- lib/stripe/services/quote_service.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.
1211 1212 1213 1214 |
# File 'lib/stripe/services/quote_service.rb', line 1211 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`.
1207 1208 1209 |
# File 'lib/stripe/services/quote_service.rb', line 1207 def account @account end |
#type ⇒ Object
Type of the account referenced in the request.
1209 1210 1211 |
# File 'lib/stripe/services/quote_service.rb', line 1209 def type @type end |