All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yoti.api.client.docs.session.create.check.RequestedCheck Maven / Gradle / Ivy

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