com.yoti.api.client.docs.session.create.task.RequestedSupplementaryDocTextExtractionTaskConfig 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.task;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The configuration applied when creating each SupplementaryTextExtractionTask
*/
public class RequestedSupplementaryDocTextExtractionTaskConfig implements RequestedTaskConfig {
@JsonProperty("manual_check")
private final String manualCheck;
RequestedSupplementaryDocTextExtractionTaskConfig(String manualCheck) {
this.manualCheck = manualCheck;
}
/**
* Describes the manual fallback behaviour applied to each Task
*
* @return the manual check value
*/
public String getManualCheck() {
return manualCheck;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy