@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 444 B
TypeScript
/**
* @export
* @class UtcTiming
*/
export declare class UtcTiming {
/**
* The server to get the time from (required)
* @type {string}
* @memberof UtcTiming
*/
value?: string;
/**
* The scheme id to use. Please refer to the DASH standard. (required)
* @type {string}
* @memberof UtcTiming
*/
schemeIdUri?: string;
constructor(obj?: Partial<UtcTiming>);
}
export default UtcTiming;