/** * Finix API */ import { WebhookEnabledEventsInner } from './webhookEnabledEventsInner'; export declare class UpdateWebhookRequest { /** * Set to false to disable `Webhooks`. Default value when created is true. */ 'enabled'?: boolean; /** * A list of events the [webhook is explicitly enabled for](/guides/developers/webhooks/#webhook-event-filtering). */ 'enabledEvents'?: Array; /** * The HTTP or HTTPS url where the callbacks will be sent via POST request (max 120 characters). */ 'url'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }