com.yoti.api.client.docs.session.create.check.RequestedCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-api Show documentation
Show all versions of yoti-sdk-api Show documentation
Java SDK for simple integration with the Yoti platform
The newest version!
package com.yoti.api.client.docs.session.create.check;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* {@link RequestedCheck} requests creation of a Check to be performed on a document
*
* @param class that implements {@link RequestedCheckConfig}
*/
public abstract class RequestedCheck {
/**
* Return the type of the Check to create
*
* @return the check type
*/
@JsonProperty("type")
public abstract String getType();
/**
* Return configuration to apply to the Check
*
* @return the configuration
*/
@JsonProperty("config")
public abstract T getConfig();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy