Method: DocuSign_Maestro::DSWorkflowComparisonExpression#valid?

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

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid

[View source]

96
97
98
99
100
101
102
# File 'lib/docusign_maestro/models/ds_workflow_comparison_expression.rb', line 96

def valid?
  return false if @comparison_operator.nil?
  return false if @left_operand.nil?
  return false if @right_operand.nil?
  return false if @type.nil?
  true
end