Class: AsposeHtml::ErrorDetails

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

Overview

The error details

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 = {}) ⇒ ErrorDetails

Initializes the object

Parameters:

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

    Model attributes in the form of hash



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

#dateObject

Date



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

def date
  @date
end

#request_idObject

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_mapObject

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_typesObject

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.

Parameters:

  • Object (Object)

    to be compared



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

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



102
103
104
# File 'lib/aspose_html_cloud/models/error_details.rb', line 102

def hash
  [request_id, date].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properties with the reasons



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

Returns:

  • (Boolean)

    true if the model is 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