/** * Invicti 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. */ import { RequestFile } from './models'; /** * Provides the settings for Cross-site Request Forgery checks. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "captchaIndicators", "baseName": "CaptchaIndicators", "type": "string" }, { "name": "loginFormValues", "baseName": "LoginFormValues", "type": "string" }, { "name": "nonFormValues", "baseName": "NonFormValues", "type": "string" }, { "name": "nonInputValues", "baseName": "NonInputValues", "type": "string" }, { "name": "userNameInputs", "baseName": "UserNameInputs", "type": "string" } ]; static getAttributeTypeMap() { return CsrfSettingModel.attributeTypeMap; } }