' Options: 'Date: 2024-12-01 04:00:24 '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: AuthorizeToken.* '''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 AuthorizeBaseResponse Public Sub New() Settings = New List(Of Setting) End Sub Public Overridable Property IsAuthorized As Boolean Public Overridable Property Settings As List(Of Setting) 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 AuthorizeToken Implements IReturn(Of AuthorizeTokenResponse) Implements IAuthorizeToken Public Overridable Property TokenString As String Public Overridable Property Service As String End Class Public Partial Class AuthorizeTokenResponse Inherits AuthorizeBaseResponse End Class Public Interface IAuthorizeToken Property TokenString As String Property Service As String End Interface Public Partial Class Setting Public Overridable Property Name As String Public Overridable Property StringValue As String Public Overridable Property BooleanValue As Boolean Public Overridable Property DataType As String End Class End Namespace End Namespace