class Tourmaline::Gift

Overview

This object represents a gift that can be sent by the bot.

Included Modules

Defined in:

tourmaline/types/api.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(id : String, sticker : Tourmaline::Sticker, star_count : Int32 | Int64, upgrade_star_count : Int32 | Int64 | Nil = nil, total_count : Int32 | Int64 | Nil = nil, remaining_count : Int32 | Int64 | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def id : String #

Unique identifier of the gift


[View source]
def id=(id : String) #

Unique identifier of the gift


[View source]
def remaining_count : Int32 | Int64 | Nil #

Optional. The number of remaining gifts of this type that can be sent; for limited gifts only


[View source]
def remaining_count=(remaining_count : Int32 | Int64 | Nil) #

Optional. The number of remaining gifts of this type that can be sent; for limited gifts only


[View source]
def star_count : Int32 | Int64 #

The number of Telegram Stars that must be paid to send the sticker


[View source]
def star_count=(star_count : Int32 | Int64) #

The number of Telegram Stars that must be paid to send the sticker


[View source]
def sticker : Tourmaline::Sticker #

The sticker that represents the gift


[View source]
def sticker=(sticker : Tourmaline::Sticker) #

The sticker that represents the gift


[View source]
def total_count : Int32 | Int64 | Nil #

Optional. The total number of the gifts of this type that can be sent; for limited gifts only


[View source]
def total_count=(total_count : Int32 | Int64 | Nil) #

Optional. The total number of the gifts of this type that can be sent; for limited gifts only


[View source]
def upgrade_star_count : Int32 | Int64 | Nil #

Optional. The number of Telegram Stars that must be paid to upgrade the gift to a unique one


[View source]
def upgrade_star_count=(upgrade_star_count : Int32 | Int64 | Nil) #

Optional. The number of Telegram Stars that must be paid to upgrade the gift to a unique one


[View source]