Class: Stripe::QuoteMarkStaleParams

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(expand: nil, reason: nil) ⇒ QuoteMarkStaleParams

Returns a new instance of QuoteMarkStaleParams.



11
12
13
14
# File 'lib/stripe/params/quote_mark_stale_params.rb', line 11

def initialize(expand: nil, reason: nil)
  @expand = expand
  @reason = reason
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



7
8
9
# File 'lib/stripe/params/quote_mark_stale_params.rb', line 7

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



9
10
11
# File 'lib/stripe/params/quote_mark_stale_params.rb', line 9

def reason
  @reason
end