Class: Stripe::QuoteFinalizeQuoteParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/quote_finalize_quote_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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 = expand
  @expires_at = expires_at
end

Instance Attribute Details

#expandObject

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
  @expand
end

#expires_atObject

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