' Options: 'Date: 2024-06-16 17:12:20 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''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: LicenseInformationQuery.* '''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.Globalization Imports System.IO Imports BokaMera.API.ServiceModel.Db Imports BokaMera.API.ServiceModel.Dtos Imports PaysonIntegrationCO2.Models.Enums Namespace Global Namespace BokaMera.API.ServiceModel.Db Public Partial Class BaseModel End Class Public Partial Class Country Inherits BaseModel Public Overridable Property CurrencyId As String Public Overridable Property CurrencyInfo As Currency Public Overridable Property Name As String Public Overridable Property Culture As String Public Overridable Property TimeZone As String Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) Public Overridable Property Id As String End Class Public Partial Class Currency Inherits BaseModel Public Overridable Property Name As String Public Overridable Property CurrencySign As String Public Overridable Property Active As Boolean Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) Public Overridable Property Id As String End Class Public Partial Class LicenseInformation Inherits BaseModel Public Overridable Property Prices As IList(Of LicensePrice) Public Overridable Property Id As Integer Public Overridable Property LicenseInformationId As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property Url As String Public Overridable Property FreeEdition As Boolean Public Overridable Property StartEdition As Boolean Public Overridable Property ProEdition As Boolean Public Overridable Property FreeEditionValue As String Public Overridable Property StartEditionValue As String Public Overridable Property ProEditionValue As String Public Overridable Property PlatinumEdition As Nullable(Of Boolean) Public Overridable Property PlatinumEditionValue As String Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) Public Overridable Property SmartEdition As Nullable(Of Boolean) Public Overridable Property EnterpriseEdition As Nullable(Of Boolean) Public Overridable Property SmartEditionValue As String Public Overridable Property EnterpriseEditionValue As String End Class Public Partial Class LicensePrice Inherits BaseModel Public Overridable Property Country As Country Public Overridable Property MonthlyPayment As Boolean Public Overridable Property LicenseTypeId As Integer Public Overridable Property CountryId As String Public Overridable Property Price As Integer Public Overridable Property ModifiedDate As Nullable(Of DateTimeOffset) End Class End Namespace Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class LicenseInformationQuery Inherits QueryDb(Of LicenseInformation, LicenseTypeQueryResponse) Implements IReturn(Of QueryResponse(Of LicenseTypeQueryResponse)) ''' '''If you want to include the connected license prices ''' Public Overridable Property IncludeLicensePrices As Boolean Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class LicenseItemsResponse Public Overridable Property Id As Integer Public Overridable Property Name As String Public Overridable Property AllowedItems As Integer End Class Public Partial Class LicenseTypeQueryResponse Public Sub New() Items = New List(Of LicenseItemsResponse) Prices = New List(Of LicensePrice) End Sub ''' '''The license type id ''' Public Overridable Property Id As Integer ''' '''The license type name ''' Public Overridable Property Name As String ''' '''The license type description ''' Public Overridable Property Description As String ''' '''If the license type is not a standard license but instead an extra license option. An example would be sending new letter license. ''' Public Overridable Property IsExtraLicenseOption As Boolean ''' '''The period of notice for the license in days. ''' Public Overridable Property PeriodOfNoticeDays As Integer ''' '''The license items for the license type ''' Public Overridable Property Items As List(Of LicenseItemsResponse) ''' '''The license prices in each country for the license type ''' Public Overridable Property Prices As List(Of LicensePrice) End Class End Namespace Namespace PaysonIntegrationCO2.Models.Enums Public Enum Currency SEK = 1 EUR = 2 End Enum End Namespace End Namespace