FoxoChat.js Packages
    Preparing search index...

    Interface APIChannel

    API Channel DTO.

    interface APIChannel {
        avatar: null | APIAvatar;
        banner: null | APIAvatar;
        created_at: number;
        display_name: string;
        flags: ChannelFlags;
        id: number;
        last_message: null | APIMessage;
        member_count: number;
        name: string;
        owner: APIUser;
        type: ChannelType;
    }
    Index

    Properties

    avatar: null | APIAvatar

    The avatar of the channel.

    banner: null | APIAvatar

    The banner of the channel.

    created_at: number

    The time when channel created at.

    display_name: string

    The display name of the channel.

    The flags of the channel.

    id: number

    The id of the channel.

    last_message: null | APIMessage

    The last sent message in channel.

    member_count: number

    Amount of members in channel.

    name: string

    The name of the channel.

    owner: APIUser

    The owner of the channel.

    The type of the channel.