Class: ShellCardManagementApIs::UpdateMPayRegStatusRequest
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- ShellCardManagementApIs::UpdateMPayRegStatusRequest
- Defined in:
- lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb
Overview
UpdateMPayRegStatusRequest Model.
Instance Attribute Summary collapse
-
#col_co_code ⇒ Integer
Collecting Company Code (Shell Code) of the selected payer.
-
#col_co_id ⇒ Integer
Collecting Company Id of the selected payer.
-
#m_pay_requests ⇒ Array[UpdateMPayRegStatusRequestMPayRequestsItems]
List of MPay Request to be updated for Fleet Manager approval status.
-
#payer_id ⇒ Integer
Payer Id of the selected payer.
-
#payer_number ⇒ String
Payer Number (Ex: GB000000123) of the selected payer.
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(col_co_id = SKIP, col_co_code = SKIP, payer_id = SKIP, payer_number = SKIP, m_pay_requests = SKIP) ⇒ UpdateMPayRegStatusRequest
constructor
A new instance of UpdateMPayRegStatusRequest.
Methods inherited from BaseModel
#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json
Constructor Details
#initialize(col_co_id = SKIP, col_co_code = SKIP, payer_id = SKIP, payer_number = SKIP, m_pay_requests = SKIP) ⇒ UpdateMPayRegStatusRequest
Returns a new instance of UpdateMPayRegStatusRequest.
72 73 74 75 76 77 78 79 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 72 def initialize(col_co_id = SKIP, col_co_code = SKIP, payer_id = SKIP, payer_number = SKIP, m_pay_requests = 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 @m_pay_requests = m_pay_requests unless m_pay_requests == SKIP end |
Instance Attribute Details
#col_co_code ⇒ Integer
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-Philippines 5-UK
27 28 29 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 27 def col_co_code @col_co_code end |
#col_co_id ⇒ Integer
Collecting Company Id of the selected payer. Optional if ColCoCode is passed else Mandatory. Example: 1-Philippines 5-UK
18 19 20 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 18 def col_co_id @col_co_id end |
#m_pay_requests ⇒ Array[UpdateMPayRegStatusRequestMPayRequestsItems]
List of MPay Request to be updated for Fleet Manager approval status. Mandatory Maximum number of requests that can be submitted are 50
43 44 45 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 43 def m_pay_requests @m_pay_requests end |
#payer_id ⇒ Integer
Payer Id of the selected payer. Optional if PayerNumber is passed else Mandatory
32 33 34 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 32 def payer_id @payer_id end |
#payer_number ⇒ String
Payer Number (Ex: GB000000123) of the selected payer. Optional if PayerId is passed else Mandatory
37 38 39 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_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.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 82 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 # Parameter is an array, so we need to iterate through it m_pay_requests = nil unless hash['MPayRequests'].nil? m_pay_requests = [] hash['MPayRequests'].each do |structure| m_pay_requests << (UpdateMPayRegStatusRequestMPayRequestsItems.from_hash(structure) if structure) end end m_pay_requests = SKIP unless hash.key?('MPayRequests') # Create object from extracted values. UpdateMPayRegStatusRequest.new(col_co_id, col_co_code, payer_id, payer_number, m_pay_requests) end |
.names ⇒ Object
A mapping from model property names to API property names.
46 47 48 49 50 51 52 53 54 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 46 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['m_pay_requests'] = 'MPayRequests' @_hash end |
.nullables ⇒ Object
An array for nullable fields
68 69 70 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 68 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
57 58 59 60 61 62 63 64 65 |
# File 'lib/shell_card_management_ap_is/models/update_m_pay_reg_status_request.rb', line 57 def self.optionals %w[ col_co_id col_co_code payer_id payer_number m_pay_requests ] end |