/** * 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 { ReducedTeamApiViewModel } from './reducedTeamApiViewModel'; import { RoleWebsiteGroupMappingApiViewModel } from './roleWebsiteGroupMappingApiViewModel'; export declare class MemberInvitationApiViewModel { /** * Gets or sets the identifier. */ 'id'?: string; /** * Gets or sets the invitation\'s account identifier. */ 'accountId'?: string; /** * Gets or sets the display name of the user. */ 'name'?: string; /** * Gets or sets the email. */ 'email'?: string; /** * Gets or sets a value indicating where api access is enabled for user. */ 'isApiAccessEnabled'?: boolean; /** * Gets or sets the phone number. */ 'phoneNumber'?: string; /** * Gets or sets a value indicating whether the allowed site limit that user can create. */ 'allowedWebsiteLimit'?: number; /** * Gets or sets the alternative login email. */ 'alternateLoginEmail'?: string; /** * With invitation, it checks whether the user has been created. */ 'inUse'?: boolean; /** * Selected users */ 'teams'?: Array; /** * Selected Role Website Groups Mappings */ 'roleWebsiteGroupMappings'?: Array; /** * Is Alternate Login Email */ 'isAlternateLoginEmail'?: boolean; /** * 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; }[]; }