com.yoti.api.client.sandbox.docs.request.task.SandboxDocumentIdPhoto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-sandbox Show documentation
Show all versions of yoti-sdk-sandbox Show documentation
Java SDK for simple integration with the Sandbox Yoti platform
The newest version!
package com.yoti.api.client.sandbox.docs.request.task;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SandboxDocumentIdPhoto {
@JsonProperty("content_type")
private final String contentType;
@JsonProperty("data")
private final String data;
SandboxDocumentIdPhoto(String contentType, String data) {
this.contentType = contentType;
this.data = data;
}
public String getContentType() {
return contentType;
}
public String getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy