Type alias ArenaChannelWithDetails

ArenaChannelWithDetails: ArenaOwnerInfo & ArenaChannel & {
    can_index: boolean;
    contents: ReadonlyArray<ArenaChannelContents> | null;
    follower_count: number;
    group?: ArenaGroup;
    id: number;
    user?: ArenaUserWithDetails;
}

Type declaration

  • can_index: boolean
  • contents: ReadonlyArray<ArenaChannelContents> | null

    (Array, can be null) Array of blocks and other channels in the channel. Note: If the request is authenticated, this will include any private channels included in the requested channel that you have access to. If not, only public channels included in the requested channel will be shown.

  • follower_count: number
  • Optional group?: ArenaGroup
  • id: number
  • Optional user?: ArenaUserWithDetails

    (Object) More information on the channel author. Contains id, slug, first_name, last_name, full_name, avatar, email, channel_count, following_count, follower_count, and profile_id

Generated using TypeDoc