Type alias ArenaUser

ArenaUser: {
    avatar: string;
    avatar_image: ArenaImage[] | null;
    channel_count: number;
    class: "User";
    first_name: string;
    follower_count: number;
    following_count: number;
    id: number;
    initials: string;
    last_name: string;
    profile_id: number;
    slug: string;
    username: string;
}

Type declaration

  • avatar: string

    The gravatar URL to the user's avatar

  • avatar_image: ArenaImage[] | null
  • channel_count: number

    The number of channels the user owns or is a collaborator on

  • class: "User"

    Will always be "User"

  • first_name: string

    The first name of the user

  • follower_count: number

    The number of users following the user

  • following_count: number

    The number of channels and users a user is following

  • id: number

    The internal ID of the user

  • initials: string

    The initials of a user. Derived from the user's first and last name

  • last_name: string

    The last name of the user

  • profile_id: number

    The internal ID of the user's profile channel

  • slug: string

    The slug of the user. This is used for the user's default profile channel

  • username: string

    Currently this will be equivalent to "full_name"

Generated using TypeDoc