Class: Stripe::QuoteFinalizeQuoteParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::QuoteFinalizeQuoteParams
- Defined in:
- lib/stripe/params/quote_finalize_quote_params.rb
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#expires_at ⇒ Object
A future timestamp on which the quote will be canceled if in ‘open` or `draft` status.
Instance Method Summary collapse
-
#initialize(expand: nil, expires_at: nil) ⇒ QuoteFinalizeQuoteParams
constructor
A new instance of QuoteFinalizeQuoteParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, expires_at: nil) ⇒ QuoteFinalizeQuoteParams
11 12 13 14 |
# File 'lib/stripe/params/quote_finalize_quote_params.rb', line 11 def initialize(expand: nil, expires_at: nil) @expand = @expires_at = expires_at end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
7 8 9 |
# File 'lib/stripe/params/quote_finalize_quote_params.rb', line 7 def @expand end |
#expires_at ⇒ Object
A future timestamp on which the quote will be canceled if in ‘open` or `draft` status. Measured in seconds since the Unix epoch.
9 10 11 |
# File 'lib/stripe/params/quote_finalize_quote_params.rb', line 9 def expires_at @expires_at end |