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

com.antonioaltieri.telegram.botapi.requests.ChatAction Maven / Gradle / Ivy

package com.antonioaltieri.telegram.botapi.requests;

public enum ChatAction {
    TYPING,
    UPLOAD_PHOTO,
    RECORD_VIDEO,
    UPLOAD_VIDEO,
    RECORD_AUDIO,
    UPLOAD_AUDIO,
    UPLOAD_DOCUMENT,
    FIND_LOCATION;

    public String getAction() {
        return name().toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy