' Options: 'Date: 2024-06-26 09:19:47 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: DeleteUser.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports System.IO Imports BokaMera.API.ServiceModel.Enums Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class AdminProfile Public Overridable Property CompanyId As Guid Public Overridable Property Id As Guid Public Overridable Property Firstname As String Public Overridable Property Lastname As String Public Overridable Property Email As String Public Overridable Property WorkerId As String Public Overridable Property Phone As String End Class Public Partial Class DeleteUser Implements IReturn(Of DeleteUserResponse) ''' '''The user name of your profile. ''' Public Overridable Property UserName As String ''' '''The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 ''' Public Overridable Property Realm As KeyCloakRealm ''' '''If this equals true it will force delete all customer profiles on all company on there you have booked a time. ''' Public Overridable Property DeleteCustomerProfiles As Boolean ''' '''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. ''' Public Overridable Property ForceDelete As Boolean ''' '''The value is only checked when ForceDelete is set to true. Contains the token value what was sent to email. ''' Public Overridable Property Token As String End Class Public Partial Class DeleteUserResponse Public Overridable Property ResponseStatus As Object ''' '''The user id for your profile. ''' Public Overridable Property UserName As String Public Overridable Property UserProfile As UserProfileResponse Public Overridable Property AdminProfile As AdminProfile End Class Public Partial Class UserProfileResponse Public Overridable Property Id As Guid Public Overridable Property Firstname As String Public Overridable Property Lastname As String Public Overridable Property Phone As String Public Overridable Property Email As String End Class End Namespace Namespace BokaMera.API.ServiceModel.Enums Public Enum KeyCloakRealm BookMore = 1 BookMoreAdmin = 2 SuperAdmin = 3 End Enum End Namespace End Namespace