Class: Stripe::Quote::MarkStaleParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/quote.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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

Returns a new instance of MarkStaleParams.



3178
3179
3180
3181
# File 'lib/stripe/resources/quote.rb', line 3178

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



3174
3175
3176
# File 'lib/stripe/resources/quote.rb', line 3174

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



3176
3177
3178
# File 'lib/stripe/resources/quote.rb', line 3176

def reason
  @reason
end