Layer 224
constructor
inputEmojiStatusCollectible#7141dbf flags:# collectible_id:long until:flags.0?int = EmojiStatus;

Parameters

Name Type Description
CollectibleId long ID of the collectible (from star Gift Unique. id ).
Until flags.0?int If set, the emoji status will be active until the specified unixtime.

Returns

EmojiStatus

Gogram Example

// Creating InputEmojiStatusCollectible constructor
obj := &tg.InputEmojiStatusCollectible{
    CollectibleId: int64(1234567890),

    // Optional fields:
    // Until: 42,
}