import { ModelData, Model } from "@kubernetes-models/base"; /** * CloudEventAttributes specifies the attributes that a Source * uses as part of its CloudEvents. */ export interface ICloudEventAttributes { /** * Source is the CloudEvents source attribute. */ "source"?: string; /** * Type refers to the CloudEvent type attribute. */ "type"?: string; } /** * CloudEventAttributes specifies the attributes that a Source * uses as part of its CloudEvents. */ export declare class CloudEventAttributes extends Model implements ICloudEventAttributes { "source"?: string; "type"?: string; constructor(data?: ModelData); } export type { ICloudEventAttributes as IDevKnativePkgApisDuckV1CloudEventAttributes, CloudEventAttributes as DevKnativePkgApisDuckV1CloudEventAttributes };