/** * 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. */ export declare class FormAuthenticationHashicorpVaultSetting { /** * Gets or sets the integration id. */ 'integrationId'?: string; /** * Gets or sets the KV Secret engine version. */ 'version'?: FormAuthenticationHashicorpVaultSetting.VersionEnum; /** * Gets or sets the secret engine. */ 'secretEngine'?: string; /** * Gets or sets the secret. */ 'secret'?: string; /** * Gets or sets the username is static or not. */ 'useStaticUsername'?: boolean; /** * Gets or sets the static username. */ 'staticUsername'?: string; /** * Gets or sets the username key. */ 'usernameKey'?: string; /** * Gets or sets the password key. */ 'passwordKey'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace FormAuthenticationHashicorpVaultSetting { enum VersionEnum { V1, V2 } }