com.yoti.api.client.docs.session.devicemetadata.MetadataResponse 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.devicemetadata;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MetadataResponse {
@JsonProperty("event")
private String event;
@JsonProperty("resource_id")
private String resourceId;
@JsonProperty("created")
private String created;
@JsonProperty("device")
private DeviceResponse device;
public String getEvent() {
return event;
}
public String getResourceId() {
return resourceId;
}
public String getCreated() {
return created;
}
public DeviceResponse getDevice() {
return device;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy