/** * 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 DiscoveryApiModel { /** * Gets or sets the identifier. */ 'id'?: string; /** * Gets or sets the sub domain. */ 'subDomain'?: string; /** * Gets or sets the second level domain. */ 'secondLevelDomain'?: string; /** * Gets or sets the second level domain count. */ 'secondLevelDomainCount'?: number; /** * Gets or sets the top level domain. */ 'topLevelDomain'?: string; /** * Gets or sets the top level domain count. */ 'topLevelDomainCount'?: number; /** * Gets or sets the authority. */ 'authority'?: string; /** * Gets or sets the HTTPS. */ 'https'?: boolean; /** * Gets the ip address string. */ 'ipAddress'?: string; /** * Gets the ip address count. */ 'ipAddressCount'?: number; /** * Gets or sets the name of the organization. */ 'organizationName'?: string; /** * Gets or sets the organization name count. */ 'organizationNameCount'?: number; /** * Gets or sets the copyright. */ 'copyright'?: string; /** * Gets or sets the account identifier. */ 'accountId'?: string; /** * Gets or sets the website identifier. */ 'websiteId'?: string; /** * Gets or sets the name of the website. */ 'websiteName'?: string; /** * Gets or sets the distance. */ 'distance'?: number; /** * Gets or sets the status. */ 'status'?: DiscoveryApiModel.StatusEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace DiscoveryApiModel { enum StatusEnum { New, Ignored, Created } }