com.global.api.entities.FraudManagementResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import java.util.List;
@Accessors(chain = true)
@Getter
@Setter
public class FraudManagementResponse {
// This element indicates the mode the Fraud Filter executed in
private String fraudResponseMode ;
// This field is used to determine what the overall result the Fraud Filter returned
private String fraudResponseResult;
// Filter rules
private List fraudResponseRules;
private String fraudResponseMessage;
}