Method: AsposeCellsCloud::CombinationSourceData#list_invalid_properties

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

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/aspose_cells_cloud/models/combination_source_data.rb', line 109

def list_invalid_properties
  invalid_properties = Array.new
  if @tag.nil?
      invalid_properties.push("invalid value for 'tag', tag cannot be nil.")
  end
  if @data_source.nil?
      invalid_properties.push("invalid value for 'data_source', data_source cannot be nil.")
  end
  if @file_info.nil?
      invalid_properties.push("invalid value for 'file_info', file_info cannot be nil.")
  end
  if @worksheet.nil?
      invalid_properties.push("invalid value for 'worksheet', worksheet cannot be nil.")
  end
  if @table_name.nil?
      invalid_properties.push("invalid value for 'table_name', table_name cannot be nil.")
  end
  if @cell_area.nil?
      invalid_properties.push("invalid value for 'cell_area', cell_area cannot be nil.")
  end
  if @has_header.nil?
      invalid_properties.push("invalid value for 'has_header', has_header cannot be nil.")
  end

  return invalid_properties
end