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.
Please note that the duration of a Period is usually determined by the media contained therein.
Setting the `duration` property to a specific value will override this default behaviour.
Warning: Use at your own risk! * @type {number} * @memberof Period */ duration?: number; constructor(obj?: Partial); } export default Period;