/** * 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. */ /** * Represents credentials for Basic, NTML, Kerberos, Digest or Negotiate authentication. */ export declare class BasicAuthenticationCredentialApiModel { /** * Gets or sets the type of the authentication. */ 'authenticationType'?: BasicAuthenticationCredentialApiModel.AuthenticationTypeEnum; /** * Gets or sets the domain or computer name that verifies the credentials. */ 'domain'?: string; /** * Gets or sets the password for the user name associated with the credentials. */ 'password'?: string; /** * Gets or sets the URI prefix. */ 'uriPrefix'?: string; /** * Gets or sets the user name associated with the credentials. */ 'userName'?: 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 BasicAuthenticationCredentialApiModel { enum AuthenticationTypeEnum { Basic, Ntlm, Kerberos, Digest, Negotiate } }