@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 535 B
TypeScript
import { OperationProduct } from './OperationProduct';
import { OperationStatusEnum } from './OperationStatusEnum';
import { OperationTypeEnum } from './OperationTypeEnum';
/** Describes an operation */
export interface Operation {
/** Identifier of the operation */
id: number;
/** Product concerned by the operation */
product: OperationProduct;
/** Status of the operation */
status: OperationStatusEnum;
/** Type of the operation */
type: OperationTypeEnum;
}
//# sourceMappingURL=Operation.d.ts.map