Method: AsposeCellsCloud::CalculateFormulaResponse#list_invalid_properties

Defined in:
lib/aspose_cells_cloud/models/calculate_formula_response.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/calculate_formula_response.rb', line 81

def list_invalid_properties
  invalid_properties = Array.new
  if @result.nil?
      invalid_properties.push("invalid value for 'result', result 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