Type alias UserSummaryPayload

UserSummaryPayload: {
    avatar?: string;
    id: string;
    name: string;
    type?: "bot" | "user";
}

Type declaration

  • Optional avatar?: string

    The avatar image associated with the user

  • id: string

    The ID of the user

  • name: string

    The user's name

  • Optional type?: "bot" | "user"

    The type of user. If this property is absent, it can assumed to be of type user

Generated using TypeDoc