/** *

The range of timestamps for which to return fragments.

*/ export interface _TimestampRange { /** *

The starting timestamp in the range of timestamps for which to return fragments.

*/ StartTimestamp: Date | string | number; /** *

The ending timestamp in the range of timestamps for which to return fragments.

*/ EndTimestamp: Date | string | number; } export interface _UnmarshalledTimestampRange extends _TimestampRange { /** *

The starting timestamp in the range of timestamps for which to return fragments.

*/ StartTimestamp: Date; /** *

The ending timestamp in the range of timestamps for which to return fragments.

*/ EndTimestamp: Date; }