Interface JsonApiCreateFileResourceBody

interface JsonApiCreateFileResourceBody {
    data: {
        attributes: {
            field: string;
            file: Buffer;
            filename: string;
            type: string;
        };
        type?: string;
    };
}

Properties

Properties

data: {
    attributes: {
        field: string;
        file: Buffer;
        filename: string;
        type: string;
    };
    type?: string;
}