Interface IUserConnectedAccount

Represents a connected account for a user.

interface IUserConnectedAccount {
    friend_sync?: boolean;
    id: string;
    name: string;
    show_activity?: boolean;
    two_way_link?: boolean;
    type: UserConnectedAccountType;
    verified: boolean;
    visibility?: 0 | 1;
}

Properties

friend_sync?: boolean

Whether friend sync is enabled for the account.

id: string

Unique identifier for the account.

name: string

Display name for the connected account.

show_activity?: boolean

Whether activity visibility is enabled for the account.

two_way_link?: boolean

Whether the account has a two-way link.

Type of the connected account.

verified: boolean

Whether the account is verified.

visibility?: 0 | 1

Visibility status of the account (0 for private, 1 for public).