/** * 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. */ import { OtpSettings } from './otpSettings'; /** * Represents 3-legged model for oauth2. */ export declare class ThreeLeggedFields { /** * . Gets or sets the enabled value */ 'enabled'?: boolean; /** * . Gets or sets the username */ 'username'?: string; /** * . Gets or sets the password */ 'password'?: string; 'otpSettings'?: OtpSettings; /** * . Gets or sets the custom scripts */ 'customScripts'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }