(* Options: Date: 2025-05-04 23:26:38 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: NewUser.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Authentication open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type DashboardPermissions = | ViewFiles = 0 | ViewNotifications = 1 | ViewSessions = 2 | ViewEndpoints = 3 | ViewReports = 4 | ViewCustomers = 5 | ViewFlows = 6 [] type UserInfo() = member val Id:String = null with get,set member val IsAuthenticated:Boolean = new Boolean() with get,set member val FirstName:String = null with get,set member val LastName:String = null with get,set member val Name:String = null with get,set member val AvatarUrl:String = null with get,set member val EmailAddress:String = null with get,set member val Roles:ResizeArray = null with get,set member val AccountIds:ResizeArray = null with get,set member val AccountNames:ResizeArray = null with get,set member val DashboardPermissions:ResizeArray = null with get,set /// ///Creates a new login with the specified email address and password. Note: Any given email address can only exist once in the entire Evo Voice system. /// [] [] [] type NewUser() = interface IReturn interface IPost /// ///The account ID you want to create this user under /// [] member val AccountId:String = null with get,set /// ///The email address of the new user /// [] member val EmailAddress:String = null with get,set /// ///The user's first name /// [] member val FirstName:String = null with get,set /// ///The user's last name /// [] member val LastName:String = null with get,set /// ///The password for the new user /// [] member val Password:String = null with get,set