Interface FileToSign

interface FileToSign {
    attribute: { hash?: string; id: string };
    file: {
        contentType?: string;
        file_size: number;
        filename: string;
        md5: string;
    };
}

Properties

Properties

attribute: { hash?: string; id: string }
file: { contentType?: string; file_size: number; filename: string; md5: string }