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

org.telegram.telegrambots.api.objects.Sticker Maven / Gradle / Ivy

package org.telegram.telegrambots.api.objects;

import com.fasterxml.jackson.annotation.JsonProperty;

import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
 * 
 * @author Lev Nadeinsky
 * @author Ruben Bermudez
 * @brief This object represents a sticker.
 * @date	2016-11-22
 */
@Data
@EqualsAndHashCode(callSuper=true)
@ToString(callSuper=true)
public class Sticker extends ApiObject {
    @JsonProperty("file_id") String fileId; ///< Unique identifier for this file
    Integer width; ///< Sticker width
    Integer height; ///< Sticker height
    PhotoSize thumb; ///< Optional. Sticker thumbnail in .webp or .jpg format
    @JsonProperty("file_size") Integer fileSize; ///< Optional. File size
    String emoji; ///< Optional. Emoji associated with the sticker

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy