com.yoti.api.client.Media 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;
/**
* Represents media with some mimeType
*
*/
public interface Media {
/**
* Get mime type of the content
*
* @return mime type
*/
String getMimeType();
/**
* Media content
*
* @return media as byte[]
*/
byte[] getContent();
/**
* Base64 encoded media content
*
* @return media as Base64 encoded String
*/
String getBase64Content();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy