Class: ShellCardManagementApIs::SearchAccountLimitRequest

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

Overview

SearchAccountLimitRequest Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(col_co_id = SKIP, col_co_code = SKIP, payer_id = SKIP, payer_number = SKIP, account_id = SKIP, account_number = SKIP) ⇒ SearchAccountLimitRequest

Returns a new instance of SearchAccountLimitRequest.



87
88
89
90
91
92
93
94
95
96
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 87

def initialize(col_co_id = SKIP, col_co_code = SKIP, payer_id = SKIP,
               payer_number = SKIP,  = SKIP,
                = SKIP)
  @col_co_id = col_co_id unless col_co_id == SKIP
  @col_co_code = col_co_code unless col_co_code == SKIP
  @payer_id = payer_id unless payer_id == SKIP
  @payer_number = payer_number unless payer_number == SKIP
  @account_id =  unless  == SKIP
  @account_number =  unless  == SKIP
end

Instance Attribute Details

#account_idInteger

Account ID of the customer. Optional if AccountNumber is passed else Mandatory Example: 123456

Returns:

  • (Integer)


43
44
45
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 43

def 
  @account_id
end

#account_numberString

Account Number of the customer. Optional if AccountId is passed else Mandatory Example: GB000000123

Returns:

  • (String)


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

def 
  @account_number
end

#col_co_codeInteger

Collecting Company Code (Shell Code) of the selected payer. Mandatory for serviced OUs such as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if ColCoID is provided. Example: 86 for Philippines 5 for UK

Returns:

  • (Integer)


25
26
27
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 25

def col_co_code
  @col_co_code
end

#col_co_idInteger

Collecting Company Id of the selected payer. Optional if ColCoCode is passed else Mandatory. Example:

Returns:

  • (Integer)


16
17
18
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 16

def col_co_id
  @col_co_id
end

#payer_idInteger

Payer Id of the selected payer. Optional if PayerNumber is passed else Mandatory Example: 123456

Returns:

  • (Integer)


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

def payer_id
  @payer_id
end

#payer_numberString

Payer Number of the selected payer. Optional if PayerId is passed else Mandatory Example: GB000000123

Returns:

  • (String)


37
38
39
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 37

def payer_number
  @payer_number
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 99

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  col_co_id = hash.key?('ColCoId') ? hash['ColCoId'] : SKIP
  col_co_code = hash.key?('ColCoCode') ? hash['ColCoCode'] : SKIP
  payer_id = hash.key?('PayerId') ? hash['PayerId'] : SKIP
  payer_number = hash.key?('PayerNumber') ? hash['PayerNumber'] : SKIP
   = hash.key?('AccountId') ? hash['AccountId'] : SKIP
   = hash.key?('AccountNumber') ? hash['AccountNumber'] : SKIP

  # Create object from extracted values.
  SearchAccountLimitRequest.new(col_co_id,
                                col_co_code,
                                payer_id,
                                payer_number,
                                ,
                                )
end

.namesObject

A mapping from model property names to API property names.



52
53
54
55
56
57
58
59
60
61
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 52

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['col_co_id'] = 'ColCoId'
  @_hash['col_co_code'] = 'ColCoCode'
  @_hash['payer_id'] = 'PayerId'
  @_hash['payer_number'] = 'PayerNumber'
  @_hash['account_id'] = 'AccountId'
  @_hash['account_number'] = 'AccountNumber'
  @_hash
end

.nullablesObject

An array for nullable fields



76
77
78
79
80
81
82
83
84
85
# File 'lib/shell_card_management_ap_is/models/search_account_limit_request.rb', line 76

def self.nullables
  %w[
    col_co_id
    col_co_code
    payer_id
    payer_number
    account_id
    account_number
  ]
end

.optionalsObject

An array for optional fields



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

def self.optionals
  %w[
    col_co_id
    col_co_code
    payer_id
    payer_number
    account_id
    account_number
  ]
end