class MasterCard::API::Mastercom::Reconciliation
Public Class Methods
acknowledgeReconciliationRequest(mapObj)
click to toggle source
# File lib/mastercard/api/mastercom/reconciliation.rb, line 61 def self.acknowledgeReconciliationRequest(mapObj) # #Creates object of type Reconciliation # #@param Dict mapObj, containing the required parameters to create a new object #@return [Reconciliation] of the response of created instance. #@raise [APIException] an exception from the response status return self.execute("e4818cbd-5590-4c1c-9825-4ebae21aff5b", Reconciliation.new(mapObj)) end
retrieveReconciliationReport(mapObj)
click to toggle source
# File lib/mastercard/api/mastercom/reconciliation.rb, line 77 def self.retrieveReconciliationReport(mapObj) # #Creates object of type Reconciliation # #@param Dict mapObj, containing the required parameters to create a new object #@return [Reconciliation] of the response of created instance. #@raise [APIException] an exception from the response status return self.execute("624a3e08-fbe2-406d-a6c4-8038a666ec87", Reconciliation.new(mapObj)) end
Protected Class Methods
getOperationConfig(operationUUID)
click to toggle source
# File lib/mastercard/api/mastercom/reconciliation.rb, line 47 def self.getOperationConfig(operationUUID) if @__store.key?(operationUUID) return @__store[operationUUID] end raise NotImplementedError.new("Invalid operationUUID supplied:"+ operationUUID) end
getOperationMetadata()
click to toggle source
# File lib/mastercard/api/mastercom/reconciliation.rb, line 54 def self.getOperationMetadata() return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext(), ResourceConfig.instance.getJsonNative(), ResourceConfig.instance.getContentTypeOverride()) end