com.yoti.api.client.sandbox.docs.request.check.SandboxCheckResult 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.check;
import com.yoti.api.client.sandbox.docs.request.check.report.SandboxCheckReport;
import com.fasterxml.jackson.annotation.JsonProperty;
class SandboxCheckResult {
@JsonProperty("report")
private final SandboxCheckReport report;
SandboxCheckResult(SandboxCheckReport report) {
this.report = report;
}
public SandboxCheckReport getReport() {
return report;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy