Class: Stripe::QuoteService::MarkStaleParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/services/quote_service.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.



2246
2247
2248
2249
# File 'lib/stripe/services/quote_service.rb', line 2246

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



2242
2243
2244
# File 'lib/stripe/services/quote_service.rb', line 2242

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



2244
2245
2246
# File 'lib/stripe/services/quote_service.rb', line 2244

def reason
  @reason
end