svix
Version:
Svix webhooks API client and webhook verification library
12 lines (11 loc) • 503 B
TypeScript
import { type OperationalWebhookEndpointOut } from "./operationalWebhookEndpointOut";
export interface ListResponseOperationalWebhookEndpointOut {
data: OperationalWebhookEndpointOut[];
done: boolean;
iterator: string | null;
prevIterator?: string | null;
}
export declare const ListResponseOperationalWebhookEndpointOutSerializer: {
_fromJsonObject(object: any): ListResponseOperationalWebhookEndpointOut;
_toJsonObject(self: ListResponseOperationalWebhookEndpointOut): any;
};