Interface JSONAttachment

interface JSONAttachment {
    contentType?: string;
    createdAt: number;
    description?: string;
    ephemeral?: boolean;
    filename: string;
    flags: number;
    height?: number;
    id: string;
    proxyURL: string;
    size: number;
    title?: string;
    url: string;
    width?: number;
}

Hierarchy (view full)

Properties

contentType?: string
createdAt: number
description?: string
ephemeral?: boolean
filename: string
flags: number
height?: number
id: string
proxyURL: string
size: number
title?: string
url: string
width?: number