Class: ShellCardManagementApIs::CardMoveResponseSuccessfulRequestsItems
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- ShellCardManagementApIs::CardMoveResponseSuccessfulRequestsItems
- Defined in:
- lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb
Overview
CardMoveResponseSuccessfulRequestsItems 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.
-
#move_card_reference ⇒ 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, move_card_reference = SKIP) ⇒ CardMoveResponseSuccessfulRequestsItems
constructor
A new instance of CardMoveResponseSuccessfulRequestsItems.
Methods inherited from BaseModel
Constructor Details
#initialize(account_number = SKIP, account_id = SKIP, pan = SKIP, card_id = SKIP, move_card_reference = SKIP) ⇒ CardMoveResponseSuccessfulRequestsItems
Returns a new instance of CardMoveResponseSuccessfulRequestsItems.
65 66 67 68 69 70 71 72 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 65 def initialize(account_number = SKIP, account_id = SKIP, pan = SKIP, card_id = SKIP, move_card_reference = 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 @move_card_reference = move_card_reference unless move_card_reference == 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_response_successful_requests_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_response_successful_requests_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_response_successful_requests_items.rb', line 26 def card_id @card_id end |
#move_card_reference ⇒ Integer
TODO: Write general description for this method
30 31 32 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 30 def move_card_reference @move_card_reference end |
#pan ⇒ String
TODO: Write general description for this method
22 23 24 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 22 def pan @pan end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 75 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 move_card_reference = hash.key?('MoveCardReference') ? hash['MoveCardReference'] : SKIP # Create object from extracted values. CardMoveResponseSuccessfulRequestsItems.new(account_number, account_id, pan, card_id, move_card_reference) end |
.names ⇒ Object
A mapping from model property names to API property names.
33 34 35 36 37 38 39 40 41 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 33 def self.names @_hash = {} if @_hash.nil? @_hash['account_number'] = 'AccountNumber' @_hash['account_id'] = 'AccountId' @_hash['pan'] = 'PAN' @_hash['card_id'] = 'CardId' @_hash['move_card_reference'] = 'MoveCardReference' @_hash end |
.nullables ⇒ Object
An array for nullable fields
55 56 57 58 59 60 61 62 63 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 55 def self.nullables %w[ account_number account_id pan card_id move_card_reference ] end |
.optionals ⇒ Object
An array for optional fields
44 45 46 47 48 49 50 51 52 |
# File 'lib/shell_card_management_ap_is/models/card_move_response_successful_requests_items.rb', line 44 def self.optionals %w[ account_number account_id pan card_id move_card_reference ] end |