Interface BasicGroup

Represents a basic group of 0-200 users (must be upgraded to a supergroup to accommodate more than 200 users).

interface BasicGroup {
    @type: "basicGroup";
    id: number;
    is_active?: boolean;
    member_count: number;
    status: ChatMemberStatus;
    upgraded_to_supergroup_id: number;
}

Properties

@type: "basicGroup"
id: number

Group identifier.

is_active?: boolean

True, if the group is active.

member_count: number

Number of members in the group.

Status of the current user in the group.

upgraded_to_supergroup_id: number

Identifier of the supergroup to which this group was upgraded; 0 if none.