Method: DocuSign_Maestro::DSIdvStep#list_invalid_properties
- Defined in:
- lib/docusign_maestro/models/ds_idv_step.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/docusign_maestro/models/ds_idv_step.rb', line 90 def list_invalid_properties invalid_properties = Array.new if @config.nil? invalid_properties.push('invalid value for "config", config cannot be nil.') end if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @input.nil? invalid_properties.push('invalid value for "input", input cannot be nil.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @output.nil? invalid_properties.push('invalid value for "output", output cannot be nil.') end if @type.nil? invalid_properties.push('invalid value for "type", type cannot be nil.') end invalid_properties end |