Class: ShellCardManagementApIs::CardMoveRequestCardsItems

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

Overview

CardMoveRequestCardsItems Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(account_number = SKIP, account_id = SKIP, pan = SKIP, card_id = SKIP) ⇒ CardMoveRequestCardsItems

Returns a new instance of CardMoveRequestCardsItems.



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

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

Instance Attribute Details

#account_idInteger

TODO: Write general description for this method

Returns:

  • (Integer)


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

def 
  @account_id
end

#account_numberString

TODO: Write general description for this method

Returns:

  • (String)


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

def 
  @account_number
end

#card_idInteger

TODO: Write general description for this method

Returns:

  • (Integer)


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

def card_id
  @card_id
end

#panString

TODO: Write general description for this method

Returns:

  • (String)


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

def pan
  @pan
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/shell_card_management_ap_is/models/card_move_request_cards_items.rb', line 62

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
   = hash.key?('AccountNumber') ? hash['AccountNumber'] : SKIP
   = hash.key?('AccountId') ? hash['AccountId'] : SKIP
  pan = hash.key?('PAN') ? hash['PAN'] : SKIP
  card_id = hash.key?('CardId') ? hash['CardId'] : SKIP

  # Create object from extracted values.
  CardMoveRequestCardsItems.new(,
                                ,
                                pan,
                                card_id)
end

.namesObject

A mapping from model property names to API property names.



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

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['account_number'] = 'AccountNumber'
  @_hash['account_id'] = 'AccountId'
  @_hash['pan'] = 'PAN'
  @_hash['card_id'] = 'CardId'
  @_hash
end

.nullablesObject

An array for nullable fields



49
50
51
# File 'lib/shell_card_management_ap_is/models/card_move_request_cards_items.rb', line 49

def self.nullables
  []
end

.optionalsObject

An array for optional fields



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

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