Type alias ArenaChannel

ArenaChannel: {
    added_to_at?: string;
    base_class: "Channel";
    class: "Channel";
    collaboration: boolean;
    created_at: string;
    id: number;
    kind: "default" | "profile";
    length: number;
    metadata: {
        description: null | string;
    } | null;
    nsfw?: boolean;
    open: boolean;
    published: boolean;
    slug: string;
    state: "available";
    status: "private" | "public" | "closed";
    title: string;
    updated_at: string;
    user_id: number;
}

Type declaration

  • Optional added_to_at?: string

    (Timestamp) Timestamp when the channel was last added to

  • base_class: "Channel"

    (String) Will always be "Channel"

  • class: "Channel"

    (String) Will always be "Channel"

  • collaboration: boolean

    (Boolean) If the channel has collaborators or not

  • created_at: string

    (Timestamp) Timestamp when the channel was created

  • id: number

    (Integer) The internal ID of the channel

  • kind: "default" | "profile"

    (String) Can be either "default" (a standard channel) or "profile" the default channel of a user

  • length: number

    (Integer) The number of items in a channel (blocks and other channels)

  • metadata: {
        description: null | string;
    } | null
  • nsfw?: boolean
  • open: boolean

    (Boolean) If channel is open to other members of arena for adding blocks

  • published: boolean

    (Boolean) If channel is visible to all members of arena or not

  • slug: string

    (String) The slug of the channel used in the url (e.g. http://are.na/arena-influences)

  • state: "available"
  • status: "private" | "public" | "closed"

    (String) Can be "private" (only open for reading and adding to the channel by channel author and collaborators), "closed" (open for reading by everyone, only channel author and collaborators can add) or "public" (everyone can read and add to the channel)

  • title: string

    (String) The title of the channel

  • updated_at: string

    (Timestamp) Timestamp when the channel was last updated

  • user_id: number

    (Integer) Internal ID of the channel author

Generated using TypeDoc