' Options: 'Date: 2025-09-03 18:54:04 'Version: 6.10 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://foundrystage-api-app.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: CreateApiKeyRequest.* '''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.IO Imports Infrastructure.Api.Interfaces.ServiceOperations Imports Application.Interfaces.Resources Imports Infrastructure.Api.Interfaces.ServiceOperations.IdentityProvider Namespace Global Namespace Application.Interfaces.Resources Public Partial Class ApiKey Implements IIdentifiableResource Public Overridable Property UserId As String Public Overridable Property Description As String Public Overridable Property ExpiresUtc As Nullable(Of Date) Public Overridable Property Key As String Public Overridable Property Id As String End Class Public Interface IIdentifiableResource Property Id As String End Interface End Namespace Namespace Infrastructure.Api.Interfaces.ServiceOperations Public Partial Class PostOperationUnTenanted(Of TResponse) Implements IPost End Class End Namespace Namespace Infrastructure.Api.Interfaces.ServiceOperations.IdentityProvider Public Partial Class CreateApiKeyRequest Inherits PostOperationUnTenanted(Of CreateApiKeyResponse) Implements IReturn(Of CreateApiKeyResponse) Public Overridable Property Description As String Public Overridable Property ExpiresUtc As Nullable(Of Date) End Class Public Partial Class CreateApiKeyResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property ApiKey As ApiKey End Class End Namespace End Namespace