' Options: 'Date: 2025-12-14 02:06:04 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.bokamera.se ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetVossProducts.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports ServiceStack.Data Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.VossIntegration.ApiTools.Enums Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class GetVossProducts Implements IReturn(Of List(Of ProductResponse)) ''' '''The type of the product - Main = The product is treated as the main product of the product group (Only 1 allowed per product family in the package tier), billed in subscription billing period - Addon = The product is treated as the addon product of the product group (Multiple allowed per product family in the package tier when Main product is also present), billed in subscription billing period - License = The product is treated as the license product in the product group (Multiple allowed per product family in the package tier when Main product is also present), billed in subscription billing period and product quantity is carried over to the next billing period, requires to have individual pricing in a product group pricing - Usage = The product is treated as the usage product of the product group, billed in usage billing period, the product quantity is reset every usage billing period, requires to have individual pricing in a product group pricing ''' Public Overridable Property ProductType As ProductTypeEnum? End Class End Namespace Namespace BokaMera.VossIntegration.ApiTools.Enums Public Enum ProductTypeEnum Main Addon License Usage End Enum End Namespace End Namespace