/** * Invicti 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 { RequestFile } from './models'; import { RoleWebsiteGroupMappingApiModel } from './roleWebsiteGroupMappingApiModel'; /** * Represents a model for carrying out new account invitation. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "email", "baseName": "Email", "type": "string" }, { "name": "alternateLoginEmail", "baseName": "AlternateLoginEmail", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" }, { "name": "phoneNumber", "baseName": "PhoneNumber", "type": "string" }, { "name": "isApiAccessEnabled", "baseName": "IsApiAccessEnabled", "type": "boolean" }, { "name": "teams", "baseName": "Teams", "type": "Array" }, { "name": "roleWebsiteGroupMappings", "baseName": "RoleWebsiteGroupMappings", "type": "Array" }, { "name": "allowedWebsiteLimit", "baseName": "AllowedWebsiteLimit", "type": "number" }, { "name": "onlySsoLogin", "baseName": "OnlySsoLogin", "type": "boolean" } ]; static getAttributeTypeMap() { return NewMemberInvitationApiModel.attributeTypeMap; } }