(* Options: Date: 2024-07-03 13:11:41 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteUser.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO type KeyCloakRealm = | BookMore = 1 | BookMoreAdmin = 2 | SuperAdmin = 3 [] type UserProfileResponse() = member val Id:Guid = new Guid() with get,set member val Firstname:String = null with get,set member val Lastname:String = null with get,set member val Phone:String = null with get,set member val Email:String = null with get,set [] type AdminProfile() = member val CompanyId:Guid = new Guid() with get,set member val Id:Guid = new Guid() with get,set member val Firstname:String = null with get,set member val Lastname:String = null with get,set member val Email:String = null with get,set member val WorkerId:String = null with get,set member val Phone:String = null with get,set [] type DeleteUserResponse() = member val ResponseStatus:Object = null with get,set /// ///The user id for your profile. /// [] member val UserName:String = null with get,set member val UserProfile:UserProfileResponse = null with get,set member val AdminProfile:AdminProfile = null with get,set [] [] [] [] type DeleteUser() = interface IReturn /// ///The user name of your profile. /// [] member val UserName:String = null with get,set /// ///The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 /// [] member val Realm:KeyCloakRealm = new KeyCloakRealm() with get,set /// ///If this equals true it will force delete all customer profiles on all company on there you have booked a time. /// [] member val DeleteCustomerProfiles:Boolean = new Boolean() with get,set /// ///If this equals true it will check the request token value and try to delete user, if it is false it will send a delete confirmation email. /// [] member val ForceDelete:Boolean = new Boolean() with get,set /// ///The value is only checked when ForceDelete is set to true. Contains the token value what was sent to email. /// [] member val Token:String = null with get,set