Interface CreateAttachment

interface CreateAttachment {
    data: string | ArrayBuffer;
    description?: string;
    filename: string;
    id?: number;
}

Properties

data: string | ArrayBuffer
description?: string
filename: string
id?: number

The placeholder ID for the attachment when creating it This will be autogenerated by botloader if not provided

Generally you shouldn't need to include this

Generated using TypeDoc