com.checkout.risk.RiskClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
package com.checkout.risk;
import com.checkout.risk.preauthentication.PreAuthenticationAssessmentRequest;
import com.checkout.risk.preauthentication.PreAuthenticationAssessmentResponse;
import com.checkout.risk.precapture.PreCaptureAssessmentRequest;
import com.checkout.risk.precapture.PreCaptureAssessmentResponse;
import java.util.concurrent.CompletableFuture;
/**
* @deprecated Risk endpoints are no longer supported officially,
* This module will be removed in a future release.
*/
@Deprecated
public interface RiskClient {
CompletableFuture requestPreAuthenticationRiskScan(PreAuthenticationAssessmentRequest preAuthenticationAssessmentRequest);
CompletableFuture requestPreCaptureRiskScan(PreCaptureAssessmentRequest preCaptureAssessmentRequest);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy