UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 601 B
/** * Custom player download information * @export * @class CustomPlayerBuildDownload */ export declare class CustomPlayerBuildDownload { /** * The link to download the custom built player (required) * @type {string} * @memberof CustomPlayerBuildDownload */ downloadLink?: string; /** * Until this date the download link is valid and can be downloaded. (required) * @type {Date} * @memberof CustomPlayerBuildDownload */ expiresAt?: Date; constructor(obj?: Partial<CustomPlayerBuildDownload>); } export default CustomPlayerBuildDownload;