(* Options: Date: 2025-09-03 19:00:50 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CreateApiKeyRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces.Resources open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type PostOperationUnTenanted<'TResponse>() = interface IPost [] type ApiKey() = member val UserId:String = null with get,set member val Description:String = null with get,set member val ExpiresUtc:Nullable = new Nullable() with get,set member val Key:String = null with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type CreateApiKeyResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val ApiKey:ApiKey = null with get,set [] [] type CreateApiKeyRequest() = inherit PostOperationUnTenanted() interface IReturn member val Description:String = null with get,set member val ExpiresUtc:Nullable = new Nullable() with get,set