com.ingenico.connect.gateway.sdk.java.domain.definitions.ResultDoRiskAssessment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
/*
* This class was auto-generated from the API references found at
* https://epayments-api.developer-ingenico.com/s2sapi/v1/
*/
package com.ingenico.connect.gateway.sdk.java.domain.definitions;
public class ResultDoRiskAssessment {
private String category = null;
private String result = null;
private RetailDecisionsCCFraudCheckOutput retaildecisionsCCFraudCheckOutput = null;
private ValidationBankAccountOutput validationBankAccountOutput = null;
/**
* The Risk Services category with the following possible values:
*
* - retaildecisionsCCFraudCheck - checks performed by Retail Decisions
*
- globalcollectBlacklistCheckCC - Checked against the blacklist on the GlobalCollect platform
*
- authorizationCheck - 0$ auth card account validation check
*
- ddFraudCheck - Check performed for German market via InterCard
*
- validationbankAccount - Bank account details are algorithmically checked if they could exist
*
- globalcollectBlacklistCheckDD - Checked against the blacklist on the GlobalCollect platform
*
*/
public String getCategory() {
return category;
}
/**
* The Risk Services category with the following possible values:
*
* - retaildecisionsCCFraudCheck - checks performed by Retail Decisions
*
- globalcollectBlacklistCheckCC - Checked against the blacklist on the GlobalCollect platform
*
- authorizationCheck - 0$ auth card account validation check
*
- ddFraudCheck - Check performed for German market via InterCard
*
- validationbankAccount - Bank account details are algorithmically checked if they could exist
*
- globalcollectBlacklistCheckDD - Checked against the blacklist on the GlobalCollect platform
*
*/
public void setCategory(String value) {
this.category = value;
}
/**
* Risk service result with the following possible results:
*
* - accepted - Based on the checks performed the transaction can be accepted
*
- challenged - Based on the checks performed the transaction should be manually reviewed
*
- denied - Based on the checks performed the transaction should be rejected
*
- no-advice - No fraud check was requested/performed
*
- error - The fraud check resulted in an error and the fraud check was thus not performed
*
*/
public String getResult() {
return result;
}
/**
* Risk service result with the following possible results:
*
* - accepted - Based on the checks performed the transaction can be accepted
*
- challenged - Based on the checks performed the transaction should be manually reviewed
*
- denied - Based on the checks performed the transaction should be rejected
*
- no-advice - No fraud check was requested/performed
*
- error - The fraud check resulted in an error and the fraud check was thus not performed
*
*/
public void setResult(String value) {
this.result = value;
}
/**
* Object containing the results of the fraud checks performed by Retail Decisions
*/
public RetailDecisionsCCFraudCheckOutput getRetaildecisionsCCFraudCheckOutput() {
return retaildecisionsCCFraudCheckOutput;
}
/**
* Object containing the results of the fraud checks performed by Retail Decisions
*/
public void setRetaildecisionsCCFraudCheckOutput(RetailDecisionsCCFraudCheckOutput value) {
this.retaildecisionsCCFraudCheckOutput = value;
}
/**
* Object containing the results of the fraud checks performed on the bank account data
*/
public ValidationBankAccountOutput getValidationBankAccountOutput() {
return validationBankAccountOutput;
}
/**
* Object containing the results of the fraud checks performed on the bank account data
*/
public void setValidationBankAccountOutput(ValidationBankAccountOutput value) {
this.validationBankAccountOutput = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy