Method: DocuSign_Maestro::DSIdvStep#valid?

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

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid


121
122
123
124
125
126
127
128
129
# File 'lib/docusign_maestro/models/ds_idv_step.rb', line 121

def valid?
  return false if @config.nil?
  return false if @id.nil?
  return false if @input.nil?
  return false if @name.nil?
  return false if @output.nil?
  return false if @type.nil?
  true
end