FoxoChat.js Packages
    Preparing search index...

    Interface APIMessage

    API Message DTO.

    interface APIMessage {
        attachments: APIAttachment[];
        author: APIMember;
        channel: null | APIChannel;
        content: string;
        created_at: number;
        id: number;
    }
    Index

    Properties

    attachments: APIAttachment[]

    The files attached to the message.

    author: APIMember

    The author of the message.

    channel: null | APIChannel

    The channel the message was sent in.

    content: string

    The content of the message.

    created_at: number

    The time when message sent at.

    id: number

    The id of the message.