com.yoti.api.client.spi.remote.call.SignedRequestResponse 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.spi.remote.call;
import java.util.List;
import java.util.Map;
public class SignedRequestResponse {
private final int responseCode;
private final byte[] responseBody;
private final Map> responseHeaders;
public SignedRequestResponse(int responseCode, byte[] responseBody, Map> responseHeaders) {
this.responseCode = responseCode;
this.responseBody = responseBody.clone();
this.responseHeaders = responseHeaders;
}
public int getResponseCode() {
return responseCode;
}
public byte[] getResponseBody() {
return responseBody;
}
public Map> getResponseHeaders() {
return responseHeaders;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy