/* Options: Date: 2025-07-01 19:08:08 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetVossProducts.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/voss/products", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class GetVossProducts implements IReturn> { /** * 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 */ @ApiMember(Description="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\n") public ProductTypeEnum ProductType = null; public ProductTypeEnum getProductType() { return ProductType; } public GetVossProducts setProductType(ProductTypeEnum value) { this.ProductType = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static enum ProductTypeEnum { Main, Addon, License, Usage; } }