Class: AsposeHtml::Error

Inherits:
BaseModel show all
Defined in:
lib/aspose_html_cloud/models/error.rb

Overview

Error

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#_deserialize, #_to_hash, #build_from_hash, #eql?, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ Error

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/aspose_html_cloud/models/error.rb', line 68

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'code')
    self.code = attributes[:'code']
  end

  if attributes.has_key?(:'message')
    self.message = attributes[:'message']
  end

  if attributes.has_key?(:'description')
    self.description = attributes[:'description']
  end

  if attributes.has_key?(:'inner_error')
    self.inner_error = attributes[:'inner_error']
  end
end

Instance Attribute Details

#codeObject

Code



35
36
37
# File 'lib/aspose_html_cloud/models/error.rb', line 35

def code
  @code
end

#descriptionObject

Description



41
42
43
# File 'lib/aspose_html_cloud/models/error.rb', line 41

def description
  @description
end

#inner_errorObject

Inner Error



44
45
46
# File 'lib/aspose_html_cloud/models/error.rb', line 44

def inner_error
  @inner_error
end

#messageObject

Message



38
39
40
# File 'lib/aspose_html_cloud/models/error.rb', line 38

def message
  @message
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



47
48
49
50
51
52
53
54
# File 'lib/aspose_html_cloud/models/error.rb', line 47

def self.attribute_map
  {
    :'code' => :'code',
    :'message' => :'message',
    :'description' => :'description',
    :'inner_error' => :'innerError'
  }
end

.model_typesObject

Attribute type mapping.



57
58
59
60
61
62
63
64
# File 'lib/aspose_html_cloud/models/error.rb', line 57

def self.model_types
  {
    :'code' => :'String',
    :'message' => :'String',
    :'description' => :'String',
    :'inner_error' => :'ErrorDetails'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



106
107
108
109
110
111
112
113
# File 'lib/aspose_html_cloud/models/error.rb', line 106

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      code == o.code &&
      message == o.message &&
      description == o.description &&
      inner_error == o.inner_error
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



117
118
119
# File 'lib/aspose_html_cloud/models/error.rb', line 117

def hash
  [code, message, description, inner_error].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



93
94
95
96
# File 'lib/aspose_html_cloud/models/error.rb', line 93

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



100
101
102
# File 'lib/aspose_html_cloud/models/error.rb', line 100

def valid?
  true
end