Class: AsposeHtml::ErrorDetails
- Defined in:
- lib/aspose_html_cloud/models/error_details.rb
Overview
The error details
Instance Attribute Summary collapse
-
#date ⇒ Object
Date.
-
#request_id ⇒ Object
The request id.
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 = {}) ⇒ ErrorDetails
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 = {}) ⇒ ErrorDetails
Initializes the object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 58 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?(:'request_id') self.request_id = attributes[:'request_id'] end if attributes.has_key?(:'date') self.date = attributes[:'date'] end end |
Instance Attribute Details
#date ⇒ Object
Date
38 39 40 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 38 def date @date end |
#request_id ⇒ Object
The request id
35 36 37 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 35 def request_id @request_id end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
41 42 43 44 45 46 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 41 def self.attribute_map { :'request_id' => :'requestId', :'date' => :'date' } end |
.model_types ⇒ Object
Attribute type mapping.
49 50 51 52 53 54 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 49 def self.model_types { :'request_id' => :'String', :'date' => :'DateTime' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
93 94 95 96 97 98 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 93 def ==(o) return true if self.equal?(o) self.class == o.class && request_id == o.request_id && date == o.date end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
102 103 104 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 102 def hash [request_id, date].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
75 76 77 78 79 80 81 82 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 75 def list_invalid_properties invalid_properties = Array.new if @date.nil? invalid_properties.push('invalid value for "date", date cannot be nil.') end invalid_properties end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
86 87 88 89 |
# File 'lib/aspose_html_cloud/models/error_details.rb', line 86 def valid? return false if @date.nil? true end |