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.



2752
2753
2754
2755
# File 'lib/stripe/resources/quote.rb', line 2752

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



2748
2749
2750
# File 'lib/stripe/resources/quote.rb', line 2748

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



2750
2751
2752
# File 'lib/stripe/resources/quote.rb', line 2750

def reason
  @reason
end