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