/** * 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 { RoleWebsiteGroupMappingApiModel } from './roleWebsiteGroupMappingApiModel'; /** * Represents a model for carrying out new account invitation. */ export declare class NewMemberInvitationApiModel { /** * Gets or sets the email. */ 'email': string; /** * Gets or sets the alternative login email. */ 'alternateLoginEmail'?: string; /** * Gets or sets the display name of the user. */ 'name': string; /** * Gets or sets the phone number. */ 'phoneNumber'?: string; /** * Gets or sets a value indicating where api access is enabled for user. */ 'isApiAccessEnabled'?: boolean; /** * Selected users */ 'teams'?: Array; /** * Selected Role Website Groups Mappings */ 'roleWebsiteGroupMappings'?: Array; /** * Gets or sets a value indicating whether the allowed site limit that user can create. */ 'allowedWebsiteLimit'?: number; /** * Gets or sets a value indicating whether this user is enforced for SSO. */ 'onlySsoLogin'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }