20 lines
510 B
TypeScript
20 lines
510 B
TypeScript
export interface EndpointPatch {
|
|
channels?: string[] | null;
|
|
description?: string;
|
|
disabled?: boolean;
|
|
filterTypes?: string[] | null;
|
|
metadata?: {
|
|
[key: string]: string;
|
|
};
|
|
rateLimit?: number | null;
|
|
secret?: string | null;
|
|
throttleRate?: number | null;
|
|
uid?: string | null;
|
|
url?: string;
|
|
version?: number;
|
|
}
|
|
export declare const EndpointPatchSerializer: {
|
|
_fromJsonObject(object: any): EndpointPatch;
|
|
_toJsonObject(self: EndpointPatch): any;
|
|
};
|