Chameleon
    Preparing search index...

    Interface Attachment

    interface Attachment {
        id: string;
        filename: string;
        title?: string;
        description?: string;
        contentType?: string;
        size: number;
        url: string;
        proxyUrl: string;
        height?: number | null;
        width?: number | null;
        placeholder?: string;
        placeholderVersion?: number;
        ephemeral?: boolean;
        durationSecs?: number;
        waveform?: string;
        flags?: number;
        clipParticipants?: User[];
        clipCreatedAt?: number;
        application?: Partial<Application>;
    }
    Index

    Properties

    id: string
    filename: string
    title?: string
    description?: string
    contentType?: string
    size: number
    url: string
    proxyUrl: string
    height?: number | null
    width?: number | null
    placeholder?: string
    placeholderVersion?: number
    ephemeral?: boolean
    durationSecs?: number
    waveform?: string
    flags?: number
    clipParticipants?: User[]
    clipCreatedAt?: number
    application?: Partial<Application>