Interface UploadFileToStorageOptions

interface UploadFileToStorageOptions {
    contractDetails: ContractDetails;
    fileData: Buffer<ArrayBufferLike> | Readable;
    fileName: string;
    path?: string;
    storageId: string;
}

Properties

contractDetails: ContractDetails
fileData: Buffer<ArrayBufferLike> | Readable
fileName: string
path?: string
storageId: string