Class: ShellCardManagementApIs::Datum

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

Overview

Datum Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json

Constructor Details

#initialize(card_id = SKIP, card_pan = SKIP, account_id = SKIP, account_number = SKIP, reference_id = SKIP) ⇒ Datum

Returns a new instance of Datum.



64
65
66
67
68
69
70
71
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 64

def initialize(card_id = SKIP, card_pan = SKIP,  = SKIP,
                = SKIP, reference_id = SKIP)
  @card_id = card_id unless card_id == SKIP
  @card_pan = card_pan unless card_pan == SKIP
  @account_id =  unless  == SKIP
  @account_number =  unless  == SKIP
  @reference_id = reference_id unless reference_id == SKIP
end

Instance Attribute Details

#account_idInteger

Account id

Returns:

  • (Integer)


22
23
24
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 22

def 
  @account_id
end

#account_numberString

Account number

Returns:

  • (String)


26
27
28
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 26

def 
  @account_number
end

#card_idInteger

Card Id.

Returns:

  • (Integer)


14
15
16
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 14

def card_id
  @card_id
end

#card_panString

PAN of the card.

Returns:

  • (String)


18
19
20
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 18

def card_pan
  @card_pan
end

#reference_idInteger

Individual delivery address update reference number for the delivery address update request.

Returns:

  • (Integer)


31
32
33
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 31

def reference_id
  @reference_id
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 74

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  card_id = hash.key?('CardId') ? hash['CardId'] : SKIP
  card_pan = hash.key?('CardPAN') ? hash['CardPAN'] : SKIP
   = hash.key?('AccountId') ? hash['AccountId'] : SKIP
   = hash.key?('AccountNumber') ? hash['AccountNumber'] : SKIP
  reference_id = hash.key?('ReferenceId') ? hash['ReferenceId'] : SKIP

  # Create object from extracted values.
  Datum.new(card_id,
            card_pan,
            ,
            ,
            reference_id)
end

.namesObject

A mapping from model property names to API property names.



34
35
36
37
38
39
40
41
42
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 34

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['card_id'] = 'CardId'
  @_hash['card_pan'] = 'CardPAN'
  @_hash['account_id'] = 'AccountId'
  @_hash['account_number'] = 'AccountNumber'
  @_hash['reference_id'] = 'ReferenceId'
  @_hash
end

.nullablesObject

An array for nullable fields



56
57
58
59
60
61
62
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 56

def self.nullables
  %w[
    card_id
    card_pan
    account_id
  ]
end

.optionalsObject

An array for optional fields



45
46
47
48
49
50
51
52
53
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 45

def self.optionals
  %w[
    card_id
    card_pan
    account_id
    account_number
    reference_id
  ]
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



100
101
102
103
104
105
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 100

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} card_id: #{@card_id.inspect}, card_pan: #{@card_pan.inspect}, account_id:"\
  " #{@account_id.inspect}, account_number: #{@account_number.inspect}, reference_id:"\
  " #{@reference_id.inspect}>"
end

#to_sObject

Provides a human-readable string representation of the object.



93
94
95
96
97
# File 'lib/shell_card_management_ap_is/models/datum.rb', line 93

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} card_id: #{@card_id}, card_pan: #{@card_pan}, account_id: #{@account_id},"\
  " account_number: #{@account_number}, reference_id: #{@reference_id}>"
end