Method: AsposeCellsCloud::CustomParserConfig#list_invalid_properties

Defined in:
lib/aspose_cells_cloud/models/custom_parser_config.rb

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properies with the reasons



81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/aspose_cells_cloud/models/custom_parser_config.rb', line 81

def list_invalid_properties
  invalid_properties = Array.new
  if @column_index.nil?
      invalid_properties.push("invalid value for 'column_index', column_index cannot be nil.")
  end
  if @parse_method.nil?
      invalid_properties.push("invalid value for 'parse_method', parse_method cannot be nil.")
  end
  if @custom_style.nil?
      invalid_properties.push("invalid value for 'custom_style', custom_style cannot be nil.")
  end

  return invalid_properties
end