import { IIoK8sApiCoreV1ObjectReference } from "kubernetes-models/v1/ObjectReference"; import { IDevKnativePkgApisCondition } from "../../knative.dev/pkg/apis/Condition.js"; import { ModelData, Model } from "@kubernetes-models/base"; export interface IParallelChannelStatus { /** * Channel is the reference to the underlying channel. */ "channel": IIoK8sApiCoreV1ObjectReference; /** * ReadyCondition indicates whether the Channel is ready or not. */ "ready": IDevKnativePkgApisCondition; } export declare class ParallelChannelStatus extends Model implements IParallelChannelStatus { "channel": IIoK8sApiCoreV1ObjectReference; "ready": IDevKnativePkgApisCondition; constructor(data?: ModelData); } export type { IParallelChannelStatus as IDevKnativeEventingPkgApisFlowsV1ParallelChannelStatus, ParallelChannelStatus as DevKnativeEventingPkgApisFlowsV1ParallelChannelStatus };