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