Options for modifying an existing file.
Used with the client's modifyFile method to update an existing file.
modifyFile
const options: FileModifyOptions = { file: new File([updatedBlob], 'notes.json'), fileId: 'existing-file-id',};await client.modifyFile(options); Copy
const options: FileModifyOptions = { file: new File([updatedBlob], 'notes.json'), fileId: 'existing-file-id',};await client.modifyFile(options);
The updated file content
ID of the file to modify
Options for modifying an existing file.
Remarks
Used with the client's
modifyFilemethod to update an existing file.Example