' Options: 'Date: 2024-12-01 03:54:43 'Version: 8.40 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://nkapi-sgepz3-auth.azurewebsites.net ' '''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: AuthorizeUserFast.* '''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 Norkart.Api.Authorization.ServiceModel Namespace Global Namespace Norkart.Api.Authorization.ServiceModel Public Partial Class AuthorizeFastBaseResponse Public Sub New() Settings = New Dictionary(Of String, String) End Sub Public Overridable Property IsAuthorized As Boolean Public Overridable Property Settings As Dictionary(Of String, String) Public Overridable Property SuggestedStatusCode As Integer Public Overridable Property SuggestedResponseMessage As String Public Overridable Property Reason As String Public Overridable Property CustomerId As Nullable(Of Guid) End Class Public Partial Class AuthorizeUserFast Implements IReturn(Of AuthorizeUserFastResponse) Implements IAuthorizeUser Public Overridable Property BearerToken As String Public Overridable Property CustomerContext As String Public Overridable Property Profile As String Public Overridable Property Service As String End Class Public Partial Class AuthorizeUserFastResponse Inherits AuthorizeFastBaseResponse Implements IAuthorizeUserResponse Public Overridable Property UserObjectId As Nullable(Of Guid) Public Overridable Property UserTenant As String Public Overridable Property UserTenantId As String End Class Public Interface IAuthorizeBaseResponse Property IsAuthorized As Boolean Property SuggestedStatusCode As Integer Property SuggestedResponseMessage As String Property Reason As String Property CustomerId As Nullable(Of Guid) End Interface Public Interface IAuthorizeUser Property BearerToken As String Property Profile As String Property Service As String End Interface Public Interface IAuthorizeUserResponse Implements IAuthorizeBaseResponse Property UserObjectId As Nullable(Of Guid) Property UserTenant As String Property UserTenantId As String End Interface End Namespace End Namespace