@signiant/media-shuttle-sdk
Version:
The SDK for supporting file transfer to and from Media Shuttle
13 lines • 543 B
TypeScript
import PlatformTransferOptions from './PlatformTransferOptions';
export default interface PlatformUploadOptions extends PlatformTransferOptions {
/**
* This is the subfolder under which the uploaded files will be placed
*/
destinationPath?: string;
/**
* Optional metadata to associate with the transfer, this metadata should match the metadata format
* expected by the portal and previously configured there.
*/
metadata?: Record<string, unknown>;
}
//# sourceMappingURL=PlatformUploadOptions.d.ts.map