interface DiscordMediaCaptureAttachment {
    description?: null | string;
    discord_attachment_id: string;
    duration_secs?: null | number;
    failure_reason?: null | string;
    filename: string;
    height?: null | number;
    id: string;
    media_id?: null | string;
    media_type: "video" | "image";
    mime_type?: null | string;
    preview_url?: null | string;
    size: number;
    status: DiscordMediaCaptureAttachmentStatus;
    title_update_id?: null | string;
    width?: null | number;
}

Properties

description?: null | string
discord_attachment_id: string
duration_secs?: null | number
failure_reason?: null | string
filename: string
height?: null | number
id: string
media_id?: null | string
media_type: "video" | "image"
mime_type?: null | string
preview_url?: null | string
size: number
title_update_id?: null | string
width?: null | number

Generated using TypeDoc