コード例 #1
0
def checkTransferParameters(requiredParameters, paymentDetails):
    # Transfer specific meta parameters
    requiredTransferMetaParams = [
        'AccountNumber', 'RoutingNumber', 'BankName', 'BeneficiaryName',
        'BeneficiaryAddress', 'BeneficiaryCountry'
    ]
    excludedCurrencies = ["NGN", "GHS", "KES", "UGX", "TZS"]
    #end Transfer specific meta parameters

    # International transfer check block
    if "bulk_data" in requiredParameters:
        for i in paymentDetails["bulk_data"]:
            if "debit_currency" not in i:
                if i["Currency"] not in excludedCurrencies:
                    if "meta" in i:
                        for j in requiredTransferMetaParams:
                            if j not in i["meta"][0]:
                                raise IncompletePaymentDetailsError(
                                    i, requiredTransferMetaParams)
                    else:
                        raise IncompletePaymentDetailsError(
                            "meta", requiredParameters)
    else:
        if "debit_currency" not in paymentDetails:
            if paymentDetails["currency"] not in excludedCurrencies:
                if "meta" in paymentDetails:
                    for i in requiredTransferMetaParams:
                        if i not in paymentDetails["meta"][0]:
                            raise IncompletePaymentDetailsError(
                                i, requiredTransferMetaParams)
                else:
                    raise IncompletePaymentDetailsError(
                        "meta", requiredParameters)
コード例 #2
0
 def getBalance(self, currency):
     if not currency:  # i made currency compulsory because if it is not assed in, an error message is returned from the server
         raise IncompletePaymentDetailsError("currency", ["currency"])
     endpoint = self._baseUrl + self._endpointMap["transfer"]["balance"]
     data = {"seckey": self._getSecretKey(), "currency": currency}
     return self._handleTransferStatusRequests(endpoint,
                                               data=data,
                                               isPostRequest=True)
コード例 #3
0
def checkIfParametersAreComplete(requiredParameters, paymentDetails):
    """ This returns true/false depending on if the paymentDetails match the required parameters """
    for i in requiredParameters:
        if i not in paymentDetails:
            raise IncompletePaymentDetailsError(i, requiredParameters)
    return True, None