Class: ShellCardManagementApIs::OrderCardResponse

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/shell_card_management_ap_is/models/order_card_response.rb

Overview

OrderCardResponse Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(request_id = SKIP, status = SKIP, data = SKIP, main_reference = SKIP) ⇒ OrderCardResponse

Returns a new instance of OrderCardResponse.



54
55
56
57
58
59
60
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 54

def initialize(request_id = SKIP, status = SKIP, data = SKIP,
               main_reference = SKIP)
  @request_id = request_id unless request_id == SKIP
  @status = status unless status == SKIP
  @data = data unless data == SKIP
  @main_reference = main_reference unless main_reference == SKIP
end

Instance Attribute Details

#dataArray[CreateCardResponse]

Indicates overall status of the request. Allowed values: SUCCESS, FAILED

Returns:



23
24
25
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 23

def data
  @data
end

#main_referenceInteger

Main order reference number for tracking.

Returns:

  • (Integer)


27
28
29
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 27

def main_reference
  @main_reference
end

#request_idString

Unique request identifier passed from end user. This identifier helps in tracing a transaction

Returns:

  • (String)


15
16
17
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 15

def request_id
  @request_id
end

#statusString

Indicates overall status of the request. Allowed values: SUCCESS, FAILED

Returns:

  • (String)


19
20
21
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 19

def status
  @status
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 63

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  request_id = hash.key?('RequestId') ? hash['RequestId'] : SKIP
  status = hash.key?('Status') ? hash['Status'] : SKIP
  # Parameter is an array, so we need to iterate through it
  data = nil
  unless hash['Data'].nil?
    data = []
    hash['Data'].each do |structure|
      data << (CreateCardResponse.from_hash(structure) if structure)
    end
  end

  data = SKIP unless hash.key?('Data')
  main_reference = hash.key?('MainReference') ? hash['MainReference'] : SKIP

  # Create object from extracted values.
  OrderCardResponse.new(request_id,
                        status,
                        data,
                        main_reference)
end

.namesObject

A mapping from model property names to API property names.



30
31
32
33
34
35
36
37
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 30

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['request_id'] = 'RequestId'
  @_hash['status'] = 'Status'
  @_hash['data'] = 'Data'
  @_hash['main_reference'] = 'MainReference'
  @_hash
end

.nullablesObject

An array for nullable fields



50
51
52
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 50

def self.nullables
  []
end

.optionalsObject

An array for optional fields



40
41
42
43
44
45
46
47
# File 'lib/shell_card_management_ap_is/models/order_card_response.rb', line 40

def self.optionals
  %w[
    request_id
    status
    data
    main_reference
  ]
end