Interface RemoteUser

Identity of a remote user on an external platform.

interface RemoteUser {
    id: string;
    displayName?: string;
    username?: string;
    avatarUrl?: string;
}

Properties

id: string

Platform-native user ID.

displayName?: string

Display name (may change).

username?: string

Username/handle if available.

avatarUrl?: string

Avatar URL if available.