10 lines
387 B
TypeScript
10 lines
387 B
TypeScript
import { type IngestEndpointDisabledEventData } from "./ingestEndpointDisabledEventData";
|
|
export interface IngestEndpointDisabledEvent {
|
|
data: IngestEndpointDisabledEventData;
|
|
type: string;
|
|
}
|
|
export declare const IngestEndpointDisabledEventSerializer: {
|
|
_fromJsonObject(object: any): IngestEndpointDisabledEvent;
|
|
_toJsonObject(self: IngestEndpointDisabledEvent): any;
|
|
};
|