Method: AsposeCellsCloud::PivotTableResponse#list_invalid_properties
- Defined in:
- lib/aspose_cells_cloud/models/pivot_table_response.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/aspose_cells_cloud/models/pivot_table_response.rb', line 81 def list_invalid_properties invalid_properties = Array.new if @pivot_table.nil? invalid_properties.push("invalid value for 'pivot_table', pivot_table cannot be nil.") end if @code.nil? invalid_properties.push("invalid value for 'code', code cannot be nil.") end if @status.nil? invalid_properties.push("invalid value for 'status', status cannot be nil.") end return invalid_properties end |