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