Interface InternalLinkTypeGiftCollection

The link is a link to a gift collection. Call searchPublicChat with the given username, then call getReceivedGifts with the received gift owner identifier and the given collection identifier, then show the collection if received. Subtype of InternalLinkType.

interface InternalLinkTypeGiftCollection {
    @type: "internalLinkTypeGiftCollection";
    collection_id: number;
    gift_owner_username: string;
}

Properties

@type: "internalLinkTypeGiftCollection"
collection_id: number

Gift collection identifier.

gift_owner_username: string

Username of the owner of the gift collection.