Interface JSONAttachment

interface JSONAttachment {
    application?: JSONApplication;
    clipCreatedAt?: number;
    clipParticipants?: JSONUser[];
    contentType?: string;
    createdAt: number;
    description?: string;
    durationSecs?: number;
    ephemeral?: boolean;
    filename: string;
    flags: number;
    height?: number;
    id: string;
    placeholder?: string;
    placeholderVersion?: number;
    proxyURL: string;
    size: number;
    title?: string;
    url: string;
    waveform?: string;
    width?: number;
}

Hierarchy (view full)

Properties

application?: JSONApplication
clipCreatedAt?: number
clipParticipants?: JSONUser[]
contentType?: string
createdAt: number
description?: string
durationSecs?: number
ephemeral?: boolean
filename: string
flags: number
height?: number
id: string
placeholder?: string
placeholderVersion?: number
proxyURL: string
size: number
title?: string
url: string
waveform?: string
width?: number