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.



2552
2553
2554
2555
# File 'lib/stripe/services/quote_service.rb', line 2552

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



2547
2548
2549
# File 'lib/stripe/services/quote_service.rb', line 2547

def expand
  @expand
end

#reasonObject

Reason the Quote is being marked stale.



2550
2551
2552
# File 'lib/stripe/services/quote_service.rb', line 2550

def reason
  @reason
end