Class: StackOne::Models::Operations::StackoneGetStepAdvancedLogRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::StackoneGetStepAdvancedLogRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/stackone_get_step_advanced_log_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(action_run_id:, step_index:) ⇒ StackoneGetStepAdvancedLogRequest
constructor
A new instance of StackoneGetStepAdvancedLogRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(action_run_id:, step_index:) ⇒ StackoneGetStepAdvancedLogRequest
Returns a new instance of StackoneGetStepAdvancedLogRequest.
21 22 23 24 |
# File 'lib/stack_one/models/operations/stackone_get_step_advanced_log_request.rb', line 21 def initialize(action_run_id:, step_index:) @action_run_id = action_run_id @step_index = step_index end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/stack_one/models/operations/stackone_get_step_advanced_log_request.rb', line 27 def ==(other) return false unless other.is_a? self.class return false unless @action_run_id == other.action_run_id return false unless @step_index == other.step_index true end |