/** * Netsparker Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Provides the settings for Cross-site Request Forgery checks. */ export declare class CsrfSettingModel { /** * A list of values which is used to check a form contains captcha against CSRF. */ 'captchaIndicators'?: string; /** * A list of values to indicate login forms whose submit inputs\' name or value contains one of these. */ 'loginFormValues'?: string; /** * A list of values to indicate non-CSRF forms whose name or action contains one of these. */ 'nonFormValues'?: string; /** * A list of values to indicate non-CSRF forms in which input\'s name or value contains one of these. */ 'nonInputValues'?: string; /** * A list of values to indicate username inputs whose name includes one of these. */ 'userNameInputs'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }