Method: DocuSign_Maestro::WorkflowDefinitionWithId#==
- Defined in:
- lib/docusign_maestro/models/workflow_definition_with_id.rb
permalink #==(o) ⇒ Object
Checks equality by comparing each attribute.
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/docusign_maestro/models/workflow_definition_with_id.rb', line 158 def ==(o) return true if self.equal?(o) self.class == o.class && account_id == o.account_id && created_date == o.created_date && id == o.id && is_draft == o.is_draft && last_deployed_id == o.last_deployed_id && last_deployed_version == o.last_deployed_version && last_deployed_workflow_definition == o.last_deployed_workflow_definition && last_updated_date == o.last_updated_date && status == o.status && trigger_url == o.trigger_url && validation_errors == o.validation_errors && workflow_definition == o.workflow_definition end |