All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.antmedia.console.rest.SupportRequest Maven / Gradle / Ivy

Go to download

Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.

There is a newer version: 2.11.3
Show newest version
package io.antmedia.console.rest;

public class SupportRequest {
	private String name;
	private String email;
	private String title;
	private String description;
	private boolean sendSystemInfo;

	public boolean isSendSystemInfo() {
		return sendSystemInfo;
	}
	public void setSendSystemInfo(boolean sendSystemInfo) {
		this.sendSystemInfo = sendSystemInfo;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy