22 lines
528 B
TypeScript
22 lines
528 B
TypeScript
export interface EndpointOut {
|
|
channels?: string[] | null;
|
|
createdAt: Date;
|
|
description: string;
|
|
disabled?: boolean;
|
|
filterTypes?: string[] | null;
|
|
id: string;
|
|
metadata: {
|
|
[key: string]: string;
|
|
};
|
|
rateLimit?: number | null;
|
|
throttleRate?: number | null;
|
|
uid?: string | null;
|
|
updatedAt: Date;
|
|
url: string;
|
|
version: number;
|
|
}
|
|
export declare const EndpointOutSerializer: {
|
|
_fromJsonObject(object: any): EndpointOut;
|
|
_toJsonObject(self: EndpointOut): any;
|
|
};
|