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 ISequenceChannelStatus { /** * Channel is the reference to the underlying channel. */ "channel": IIoK8sApiCoreV1ObjectReference; /** * ReadyCondition indicates whether the Channel is ready or not. */ "ready": IDevKnativePkgApisCondition; } export declare class SequenceChannelStatus extends Model implements ISequenceChannelStatus { "channel": IIoK8sApiCoreV1ObjectReference; "ready": IDevKnativePkgApisCondition; constructor(data?: ModelData); } export type { ISequenceChannelStatus as IDevKnativeEventingPkgApisFlowsV1SequenceChannelStatus, SequenceChannelStatus as DevKnativeEventingPkgApisFlowsV1SequenceChannelStatus };