
net.deechael.khl.message.VideoMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of khl Show documentation
Show all versions of khl Show documentation
Java sdk for Kaiheila bot development
package net.deechael.khl.message;
public class VideoMessage implements Message {
private final String url;
public VideoMessage(String videoUrl) {
this.url = videoUrl;
}
@Override
public String getContent() {
return url;
}
@Override
public MessageTypes getType() {
return MessageTypes.VIDEO;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy