Class: ShellCardManagementApIs::CardMoveRequestCardsItems
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- ShellCardManagementApIs::CardMoveRequestCardsItems
- Defined in:
- lib/shell_card_management_ap_is/models/card_move_request_cards_items.rb
Overview
CardMoveRequestCardsItems Model.
Instance Attribute Summary collapse
-
#account_id ⇒ Integer
TODO: Write general description for this method.
-
#account_number ⇒ String
TODO: Write general description for this method.
-
#card_id ⇒ Integer
TODO: Write general description for this method.
-
#pan ⇒ String
TODO: Write general description for this method.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(account_number = SKIP, account_id = SKIP, pan = SKIP, card_id = SKIP) ⇒ CardMoveRequestCardsItems
constructor
A new instance of CardMoveRequestCardsItems.
Methods inherited from BaseModel
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(account_number = SKIP, account_id = SKIP, pan = SKIP, card_id = SKIP) @account_number = account_number unless account_number == SKIP @account_id = account_id unless account_id == SKIP @pan = pan unless pan == SKIP @card_id = card_id unless card_id == SKIP end |
Instance Attribute Details
#account_id ⇒ Integer
TODO: Write general description for this method
18 19 20 |
# File 'lib/shell_card_management_ap_is/models/card_move_request_cards_items.rb', line 18 def account_id @account_id end |
#account_number ⇒ String
TODO: Write general description for this method
14 15 16 |
# File 'lib/shell_card_management_ap_is/models/card_move_request_cards_items.rb', line 14 def account_number @account_number end |
#card_id ⇒ Integer
TODO: Write general description for this method
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 |
#pan ⇒ String
TODO: Write general description for this method
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. account_number = hash.key?('AccountNumber') ? hash['AccountNumber'] : SKIP account_id = 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(account_number, account_id, pan, card_id) end |
.names ⇒ Object
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 |
.nullables ⇒ Object
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 |
.optionals ⇒ Object
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 |