Class: AsposeHtml::Error
- Defined in:
- lib/aspose_html_cloud/models/error.rb
Overview
Error
Instance Attribute Summary collapse
-
#code ⇒ Object
Code.
-
#description ⇒ Object
Description.
-
#inner_error ⇒ Object
Inner Error.
-
#message ⇒ Object
Message.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.model_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Error
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
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
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. = 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
#code ⇒ Object
Code
35 36 37 |
# File 'lib/aspose_html_cloud/models/error.rb', line 35 def code @code end |
#description ⇒ Object
Description
41 42 43 |
# File 'lib/aspose_html_cloud/models/error.rb', line 41 def description @description end |
#inner_error ⇒ Object
Inner Error
44 45 46 |
# File 'lib/aspose_html_cloud/models/error.rb', line 44 def inner_error @inner_error end |
#message ⇒ Object
Message
38 39 40 |
# File 'lib/aspose_html_cloud/models/error.rb', line 38 def @message end |
Class Method Details
.attribute_map ⇒ Object
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_types ⇒ Object
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.
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 && == o. && description == o.description && inner_error == o.inner_error end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
117 118 119 |
# File 'lib/aspose_html_cloud/models/error.rb', line 117 def hash [code, , description, inner_error].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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
100 101 102 |
# File 'lib/aspose_html_cloud/models/error.rb', line 100 def valid? true end |