io.antmedia.rest.model.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ant-media-server Show documentation
Show all versions of ant-media-server Show documentation
Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.
package io.antmedia.rest.model;
public class Version {
/**
* Gives information about the version name.
*/
public String versionName;
/**
* Gives information about the version type
*/
public String versionType;
public String getVersionName() {
return versionName;
}
public String getVersionType() {
return versionType;
}
public void setVersionName(String versionName) {
this.versionName = versionName;
}
public void setVersionType(String versionType) {
this.versionType = versionType;
}
}