/** * 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'; import { OtpSettings } from './otpSettings'; /** * Represents 3-legged model for oauth2. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "enabled", "baseName": "Enabled", "type": "boolean" }, { "name": "username", "baseName": "Username", "type": "string" }, { "name": "password", "baseName": "Password", "type": "string" }, { "name": "otpSettings", "baseName": "OtpSettings", "type": "OtpSettings" }, { "name": "customScripts", "baseName": "CustomScripts", "type": "Array" } ]; static getAttributeTypeMap() { return ThreeLeggedFields.attributeTypeMap; } }