/* Options: Date: 2024-12-01 03:39:36 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 //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: AuthorizeTokenFast.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Norkart.Api.Authorization.ServiceModel; namespace Norkart.Api.Authorization.ServiceModel { public partial class AuthorizeFastBaseResponse { public AuthorizeFastBaseResponse() { Settings = new Dictionary{}; } public virtual bool IsAuthorized { get; set; } public virtual Dictionary Settings { get; set; } public virtual int SuggestedStatusCode { get; set; } public virtual string SuggestedResponseMessage { get; set; } public virtual string Reason { get; set; } public virtual Guid? CustomerId { get; set; } } [Route("/authorizetokenfast/{Service}/{TokenString}", "GET,POST")] public partial class AuthorizeTokenFast : IReturn, IAuthorizeToken { [ApiMember(IsRequired=true, ParameterType="path")] public virtual string TokenString { get; set; } [ApiMember(IsRequired=true, ParameterType="path")] public virtual string Service { get; set; } } public partial class AuthorizeTokenFastResponse : AuthorizeFastBaseResponse { } public partial interface IAuthorizeToken { string TokenString { get; set; } string Service { get; set; } } }