Class: Raas::RaasServerErrorModel

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/raas/models/raas_server_error_model.rb

Overview

Represents a RaaS 5xx Error

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(message = nil, code = nil) ⇒ RaasServerErrorModel

Returns a new instance of RaasServerErrorModel.



23
24
25
26
27
# File 'lib/raas/models/raas_server_error_model.rb', line 23

def initialize(message = nil,
               code = nil)
  @message = message
  @code = code
end

Instance Attribute Details

#codeInteger

The RaaS error code

Returns:

  • (Integer)


13
14
15
# File 'lib/raas/models/raas_server_error_model.rb', line 13

def code
  @code
end

#messageString

The error message

Returns:



9
10
11
# File 'lib/raas/models/raas_server_error_model.rb', line 9

def message
  @message
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/raas/models/raas_server_error_model.rb', line 30

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  message = hash['message']
  code = hash['code']

  # Create object from extracted values.
  RaasServerErrorModel.new(message,
                           code)
end

.namesObject

A mapping from model property names to API property names.



16
17
18
19
20
21
# File 'lib/raas/models/raas_server_error_model.rb', line 16

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['message'] = 'message'
  @_hash['code'] = 'code'
  @_hash
end