UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 663 B
import BitmovinResponse from './BitmovinResponse'; /** * @export * @class Period */ export declare class Period extends BitmovinResponse { /** * Starting time in seconds * @type {number} * @memberof Period */ start?: number; /** * Duration in seconds.<br/>Please note that the duration of a Period is usually determined by the media contained therein.<br/>Setting the `duration` property to a specific value will override this default behaviour.<br/>Warning: Use at your own risk! * @type {number} * @memberof Period */ duration?: number; constructor(obj?: Partial<Period>); } export default Period;