Class: Kombo::Models::Shared::PutAtsApplicationsApplicationIdStageRequestBodyWorkday
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::PutAtsApplicationsApplicationIdStageRequestBodyWorkday
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/putatsapplicationsapplicationidstagerequestbody_workday.rb
Overview
Fields specific to Workday.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(workflow_step_id: nil, step_type: nil) ⇒ PutAtsApplicationsApplicationIdStageRequestBodyWorkday
constructor
A new instance of PutAtsApplicationsApplicationIdStageRequestBodyWorkday.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(workflow_step_id: nil, step_type: nil) ⇒ PutAtsApplicationsApplicationIdStageRequestBodyWorkday
Returns a new instance of PutAtsApplicationsApplicationIdStageRequestBodyWorkday.
21 22 23 24 |
# File 'lib/kombo/models/shared/putatsapplicationsapplicationidstagerequestbody_workday.rb', line 21 def initialize(workflow_step_id: nil, step_type: nil) @workflow_step_id = workflow_step_id @step_type = step_type end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/kombo/models/shared/putatsapplicationsapplicationidstagerequestbody_workday.rb', line 27 def ==(other) return false unless other.is_a? self.class return false unless @workflow_step_id == other.workflow_step_id return false unless @step_type == other.step_type true end |