Class: StackOne::Models::Operations::StackoneListStepLogsRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::StackoneListStepLogsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/stackone_list_step_logs_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(filter: nil, next_: nil, order_by: nil, order_direction: nil, page_size: nil) ⇒ StackoneListStepLogsRequest
constructor
A new instance of StackoneListStepLogsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(filter: nil, next_: nil, order_by: nil, order_direction: nil, page_size: nil) ⇒ StackoneListStepLogsRequest
Returns a new instance of StackoneListStepLogsRequest.
27 28 29 30 31 32 33 |
# File 'lib/stack_one/models/operations/stackone_list_step_logs_request.rb', line 27 def initialize(filter: nil, next_: nil, order_by: nil, order_direction: nil, page_size: nil) @filter = filter @next_ = next_ @order_by = order_by @order_direction = order_direction @page_size = page_size end |
Instance Method Details
#==(other) ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/stack_one/models/operations/stackone_list_step_logs_request.rb', line 36 def ==(other) return false unless other.is_a? self.class return false unless @filter == other.filter return false unless @next_ == other.next_ return false unless @order_by == other.order_by return false unless @order_direction == other.order_direction return false unless @page_size == other.page_size true end |