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.



2262
2263
2264
2265
# File 'lib/stripe/services/quote_service.rb', line 2262

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



2258
2259
2260
# File 'lib/stripe/services/quote_service.rb', line 2258

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



2260
2261
2262
# File 'lib/stripe/services/quote_service.rb', line 2260

def reason
  @reason
end