Method: DocuSign_Maestro::WorkflowInstance#valid?

Defined in:
lib/docusign_maestro/models/workflow_instance.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]

161
162
163
164
165
166
167
168
# File 'lib/docusign_maestro/models/workflow_instance.rb', line 161

def valid?
  return false if @creator_id.nil?
  return false if @dac_id.nil?
  return false if @instance_state.nil?
  return false if @template_id.nil?
  return false if @users.nil?
  true
end