Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Attachment

import type { Attachment } from "https://aws-api.deno.dev/v0.3/services/support.ts?docs=full";

An attachment to a case communication. The attachment consists of the file name and the content of the file.

interface Attachment {
data?: Uint8Array | string | null;
fileName?: string | null;
}

§Properties

§
data?: Uint8Array | string | null
[src]

The content of the attachment file.

§
fileName?: string | null
[src]

The name of the attachment file.