@webitel/api-services
    Preparing search index...

    Document represents a file attachment associated with a message.

    interface WebitelImApiGatewayV1Document {
        createdAt?: string;
        fileId?: string;
        id?: string;
        messageId?: string;
        mime?: string;
        name?: string;
        size?: string;
        url?: string;
    }
    Index

    Properties

    createdAt?: string

    Creation timestamp (Unix time, milliseconds).

    fileId?: string

    File storage identifier.

    id?: string

    Document identifier.

    messageId?: string

    Identifier of the message this document belongs to.

    mime?: string

    MIME type of the document.

    name?: string

    Original file name.

    size?: string

    File size in bytes.

    url?: string

    Public signed URL for downloading the document.