Class: Stripe::Quote::UpdateParams::InvoiceSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Quote::UpdateParams::InvoiceSettings
- Defined in:
- lib/stripe/resources/quote.rb
Defined Under Namespace
Classes: Issuer
Instance Attribute Summary collapse
-
#days_until_due ⇒ Object
Number of days within which a customer must pay the invoice generated by this quote.
-
#issuer ⇒ Object
The connected account that issues the invoice.
Instance Method Summary collapse
-
#initialize(days_until_due: nil, issuer: nil) ⇒ InvoiceSettings
constructor
A new instance of InvoiceSettings.
Methods inherited from RequestParams
Constructor Details
#initialize(days_until_due: nil, issuer: nil) ⇒ InvoiceSettings
Returns a new instance of InvoiceSettings.
586 587 588 589 |
# File 'lib/stripe/resources/quote.rb', line 586 def initialize(days_until_due: nil, issuer: nil) @days_until_due = days_until_due @issuer = issuer end |
Instance Attribute Details
#days_until_due ⇒ Object
Number of days within which a customer must pay the invoice generated by this quote. This value will be ‘null` for quotes where `collection_method=charge_automatically`.
582 583 584 |
# File 'lib/stripe/resources/quote.rb', line 582 def days_until_due @days_until_due end |
#issuer ⇒ Object
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
584 585 586 |
# File 'lib/stripe/resources/quote.rb', line 584 def issuer @issuer end |