(* Options: Date: 2025-09-07 09:36:45 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CreateIndividualLicense.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace MyApp.ServiceInterface open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type FreeLicenseResponse() = member val LicenseName:String = null with get,set member val LicenseRef:String = null with get,set member val LicenseKey:String = null with get,set member val LicenseType:Nullable = new Nullable() with get,set member val CreatedDate:Nullable = new Nullable() with get,set member val ExpiryDate:Nullable = new Nullable() with get,set member val ExternalRef:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type CreateIndividualLicense() = interface IReturn interface IPost member val LicenseName:String = null with get,set member val AgreeTerms:Boolean = new Boolean() with get,set