Method: DocuSign_Maestro::WorkflowStepHistory#list_invalid_properties
- Defined in:
- lib/docusign_maestro/models/workflow_step_history.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/docusign_maestro/models/workflow_step_history.rb', line 132 def list_invalid_properties invalid_properties = Array.new if @dac_id.nil? invalid_properties.push('invalid value for "dac_id", dac_id cannot be nil.') end if @step_name.nil? invalid_properties.push('invalid value for "step_name", step_name cannot be nil.') end if @step_state.nil? invalid_properties.push('invalid value for "step_state", step_state cannot be nil.') end if @user_id.nil? invalid_properties.push('invalid value for "user_id", user_id cannot be nil.') end invalid_properties end |