Interface UpdateFreezeState

The freeze state of the current user's account has changed. Subtype of Update.

interface UpdateFreezeState {
    @type: "updateFreezeState";
    appeal_link: string;
    deletion_date: number;
    freezing_date: number;
    is_frozen?: boolean;
}

Properties

@type: "updateFreezeState"
appeal_link: string

The link to open to send an appeal to unfreeze the account.

deletion_date: number

Point in time (Unix timestamp) when the account will be deleted and can't be unfrozen; 0 if the account isn't frozen.

freezing_date: number

Point in time (Unix timestamp) when the account was frozen; 0 if the account isn't frozen.

is_frozen?: boolean

True, if the account is frozen.