Method: AsposeCellsCloud::DataFillRequest#list_invalid_properties
- Defined in:
- lib/aspose_cells_cloud/models/data_fill_request.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/aspose_cells_cloud/models/data_fill_request.rb', line 95 def list_invalid_properties invalid_properties = Array.new if @file.nil? invalid_properties.push("invalid value for 'file', file cannot be nil.") end if @out_file_format.nil? invalid_properties.push("invalid value for 'out_file_format', out_file_format cannot be nil.") end if @check_excel_restriction.nil? invalid_properties.push("invalid value for 'check_excel_restriction', check_excel_restriction cannot be nil.") end if @region.nil? invalid_properties.push("invalid value for 'region', region cannot be nil.") end if @data_fill.nil? invalid_properties.push("invalid value for 'data_fill', data_fill cannot be nil.") end return invalid_properties end |