io.github.biezhi.tgbot.api.Voice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-api Show documentation
Show all versions of telegram-bot-api Show documentation
Telegram bot library by Java
The newest version!
package io.github.biezhi.tgbot.api;
import lombok.Data;
import java.io.Serializable;
@Data
public class Voice implements Serializable {
private final static long serialVersionUID = 0L;
private String file_id;
private Integer duration;
private String mime_type;
private Integer file_size;
}