Class: Asdawqw::APIResponseWithoutData

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/asdawqw/models/api_response_without_data.rb

Overview

Common response for most of functions - where ‘data’ element is not present.

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, error_message = nil, is_error = nil, code = nil) ⇒ APIResponseWithoutData

Returns a new instance of APIResponseWithoutData.



35
36
37
38
39
40
41
42
43
# File 'lib/asdawqw/models/api_response_without_data.rb', line 35

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

Instance Attribute Details

#codeString

Code of message

Returns:



23
24
25
# File 'lib/asdawqw/models/api_response_without_data.rb', line 23

def code
  @code
end

#error_messageList of String

List of error messages

Returns:



15
16
17
# File 'lib/asdawqw/models/api_response_without_data.rb', line 15

def error_message
  @error_message
end

#is_errorBoolean

Is error (default = false)

Returns:

  • (Boolean)


19
20
21
# File 'lib/asdawqw/models/api_response_without_data.rb', line 19

def is_error
  @is_error
end

#messageString

text info message

Returns:



11
12
13
# File 'lib/asdawqw/models/api_response_without_data.rb', line 11

def message
  @message
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/asdawqw/models/api_response_without_data.rb', line 46

def self.from_hash(hash)
  return nil unless hash

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

  # Create object from extracted values.
  APIResponseWithoutData.new(message,
                             error_message,
                             is_error,
                             code)
end

.namesObject

A mapping from model property names to API property names.



26
27
28
29
30
31
32
33
# File 'lib/asdawqw/models/api_response_without_data.rb', line 26

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