import type { JobRequest } from './JobRequest'; export type CopyAssetRequest = (JobRequest & { /** * The ID of the original job to copy */ jobId?: string | null; /** * The name of the asset to copy */ assetName?: string | null; /** * The destination URI to copy the asset to */ destinationUri?: string | null; });