ultra-telegram-framework
    Preparing search index...

    Interface GetChatGiftsParams

    interface GetChatGiftsParams {
        chat_id: string | number;
        exclude_from_blockchain?: boolean;
        exclude_limited_non_upgradable?: boolean;
        exclude_limited_upgradable?: boolean;
        exclude_saved?: boolean;
        exclude_unique?: boolean;
        exclude_unlimited?: boolean;
        exclude_unsaved?: boolean;
        limit?: number;
        offset?: string;
        sort_by_price?: boolean;
    }
    Index

    Properties

    chat_id: string | number

    Unique identifier for the target chat or username of the target channel in the format \@username

    exclude_from_blockchain?: boolean

    Pass True to exclude gifts that were assigned from the TON blockchain and can't be resold or transferred in Telegram

    exclude_limited_non_upgradable?: boolean

    Pass True to exclude gifts that can be purchased a limited number of times and can't be upgraded to unique

    exclude_limited_upgradable?: boolean

    Pass True to exclude gifts that can be purchased a limited number of times and can be upgraded to unique

    exclude_saved?: boolean

    Pass True to exclude gifts that are saved to the chat's profile page. Always False, unless the bot has the can_post_messages administrator right in the channel.

    exclude_unique?: boolean

    Pass True to exclude unique gifts

    exclude_unlimited?: boolean

    Pass True to exclude gifts that can be purchased an unlimited number of times

    exclude_unsaved?: boolean

    Pass True to exclude gifts that aren't saved to the chat's profile page. Always True, unless the bot has the can_post_messages administrator right in the channel.

    limit?: number

    The maximum number of gifts to be returned; 1-100. Defaults to 100

    offset?: string

    Offset of the first entry to return as received from the previous request; use an empty string to get the first chunk of results

    sort_by_price?: boolean

    Pass True to sort results by gift price instead of send date. Sorting is applied before pagination.