(* Options: Date: 2024-06-17 08:24:03 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: LicenseTypeQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Db open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type BaseModel() = class end type Currency = | SEK = 1 | EUR = 2 [] type Country() = inherit BaseModel() [)>] member val CurrencyId:String = null with get,set member val CurrencyInfo:Currency = null with get,set [] member val Name:String = null with get,set member val Culture:String = null with get,set member val TimeZone:String = null with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] member val Id:String = null with get,set [] type Currency() = inherit BaseModel() [] member val Name:String = null with get,set [] member val CurrencySign:String = null with get,set [] member val Active:Boolean = new Boolean() with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] member val Id:String = null with get,set [] type LicenseTypeItem() = inherit BaseModel() [] member val Name:String = null with get,set [] member val LicenseTypesId:Int32 = new Int32() with get,set [] member val LicenseItemsId:Int32 = new Int32() with get,set [] member val NumberOfItems:Int32 = new Int32() with get,set member val Id:Int32 = new Int32() with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] type LicensePrice() = inherit BaseModel() [] member val Country:Country = null with get,set [] member val MonthlyPayment:Boolean = new Boolean() with get,set [] member val LicenseTypeId:Int32 = new Int32() with get,set [] member val CountryId:String = null with get,set [] member val Price:Int32 = new Int32() with get,set member val ModifiedDate:Nullable = new Nullable() with get,set [] type LicenseType() = inherit BaseModel() [] member val LicenseItems:IList = null with get,set [] member val Prices:IList = null with get,set [] member val PeriodOfNoticeDays:Int32 = new Int32() with get,set [] member val NextLicenseOption:LicenseType = null with get,set [] member val Name:String = null with get,set [] member val Description:String = null with get,set [] member val ExtraLicenseOption:Boolean = new Boolean() with get,set member val ModifiedDate:Nullable = new Nullable() with get,set member val Id:Int32 = new Int32() with get,set [] type LicenseInformationQueryResponse() = member val Name:String = null with get,set member val Description:String = null with get,set member val Url:Uri = null with get,set member val FreeEdition:Boolean = new Boolean() with get,set member val StartEdition:Boolean = new Boolean() with get,set member val ProEdition:Boolean = new Boolean() with get,set member val SmartEdition:Boolean = new Boolean() with get,set member val EnterpriseEdition:Boolean = new Boolean() with get,set member val FreeEditionValue:String = null with get,set member val StartEditionValue:String = null with get,set member val ProEditionValue:String = null with get,set member val SmartEditionValue:String = null with get,set member val EnterpriseEditionValue:String = null with get,set member val LicenseInformationTypeId:Int32 = new Int32() with get,set [] [] [] type LicenseTypeQuery() = inherit QueryDb() interface IReturn> /// ///If you want to only select Extra license options /// [] member val ExtraLicenseOption:Nullable = new Nullable() with get,set /// ///What country you want to list the prices for /// [] member val CountryId:String = null with get,set /// ///If you want to include the connected license items /// [] member val IncludeLicenseItems:Boolean = new Boolean() with get,set /// ///If you want to include the connected licens prices /// [] member val IncludeLicensePrices:Boolean = new Boolean() with get,set member val ResponseStatus:ResponseStatus = null with get,set