import { _InvalidationBatch, _UnmarshalledInvalidationBatch } from "./_InvalidationBatch"; /** *

An invalidation.

*/ export interface _Invalidation { /** *

The identifier for the invalidation request. For example: IDFDVBD632BHDS5.

*/ Id: string; /** *

The status of the invalidation request. When the invalidation batch is finished, the status is Completed.

*/ Status: string; /** *

The date and time the invalidation request was first made.

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

The current invalidation information for the batch request.

*/ InvalidationBatch: _InvalidationBatch; } export interface _UnmarshalledInvalidation extends _Invalidation { /** *

The date and time the invalidation request was first made.

*/ CreateTime: Date; /** *

The current invalidation information for the batch request.

*/ InvalidationBatch: _UnmarshalledInvalidationBatch; }