Interface RawAttachment

interface RawAttachment {
    content_type?: string;
    description?: string;
    duration_secs?: number;
    ephemeral?: boolean;
    filename: string;
    flags?: number;
    height?: number;
    id: string;
    proxy_url: string;
    size: number;
    title?: string;
    url: string;
    waveform?: null | string;
    width?: number;
}

Properties

content_type?: string
description?: string
duration_secs?: number
ephemeral?: boolean
filename: string
flags?: number
height?: number
id: string
proxy_url: string
size: number
title?: string
url: string
waveform?: null | string
width?: number