import { ModelData, Model } from "@kubernetes-models/base"; /** * AppliedEventPolicyRef is the reference to an EventPolicy */ export interface IAppliedEventPolicyRef { /** * APIVersion of the applied EventPolicy. * This indicates, which version of EventPolicy is supported by the resource. */ "apiVersion": string; /** * Name of the applied EventPolicy */ "name": string; } /** * AppliedEventPolicyRef is the reference to an EventPolicy */ export declare class AppliedEventPolicyRef extends Model implements IAppliedEventPolicyRef { "apiVersion": string; "name": string; constructor(data?: ModelData); } export type { IAppliedEventPolicyRef as IDevKnativeEventingPkgApisDuckV1AppliedEventPolicyRef, AppliedEventPolicyRef as DevKnativeEventingPkgApisDuckV1AppliedEventPolicyRef };