export interface DeliverableInfo { /** A time-limited URL to download the delivered file. */ signedUrl: string; /** The MIME type of the delivered file (e.g. 'video/mp4'). */ contentType: string; /** The name of the delivered file. */ name: string; /** The version number of the deliverable. */ version?: number; }