/** * Finix API */ /** * The [authentication settings](/guides/developers/webhooks/#authenticating-webhooks) that are used to send webhook events. */ export declare class WebhookAuthentication { /** * The type of authentication the webhook will use: - NONE: No authentication will be used. - BASIC: Basic authentication. - BEARER: Oauth2\'s Bearer Token. */ 'type'?: WebhookAuthentication.TypeEnum | string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace WebhookAuthentication { enum TypeEnum { None, Basic, Bearer } }