Method: DocuSign_Maestro::WorkflowDefinition#==

Defined in:
lib/docusign_maestro/models/workflow_definition.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared

[View source]

183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/docusign_maestro/models/workflow_definition.rb', line 183

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
       == o. &&
      created_by_name == o.created_by_name &&
      document_version == o.document_version &&
      participants == o.participants &&
      schema_version == o.schema_version &&
      steps == o.steps &&
      trigger == o.trigger &&
      variables == o.variables &&
      workflow_description == o.workflow_description &&
      workflow_name == o.workflow_name
end