Class: Stripe::QuoteCreateParams::Line::SetPauseCollection

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/quote_create_params.rb

Defined Under Namespace

Classes: Set

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(set: nil, type: nil) ⇒ SetPauseCollection

Returns a new instance of SetPauseCollection.



684
685
686
687
# File 'lib/stripe/params/quote_create_params.rb', line 684

def initialize(set: nil, type: nil)
  @set = set
  @type = type
end

Instance Attribute Details

#setObject

Details of the pause_collection behavior to apply to the amendment.



680
681
682
# File 'lib/stripe/params/quote_create_params.rb', line 680

def set
  @set
end

#typeObject

Determines the type of the pause_collection amendment.



682
683
684
# File 'lib/stripe/params/quote_create_params.rb', line 682

def type
  @type
end