/** * Finix API */ import { ListLinks } from './listLinks'; import { PageCursor } from './pageCursor'; import { WebhooksListEmbedded } from './webhooksListEmbedded'; /** * `Webhook` resource. */ export declare class WebhooksList { 'page'?: PageCursor; 'embedded'?: WebhooksListEmbedded; 'links'?: ListLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }