/** * Finix API */ /** * The basic authentication configuration. Null if basic is not being used. */ export declare class CreateWebhookRequestAuthenticationBasic { /** * The username that will be used for basic authentication */ 'username'?: string; /** * The password to be used for basic authentication. */ 'password'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }