/* Options:
Date: 2025-04-06 18:33:52
Version: 8.52
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://taxfiling.pwc.de

//Package: 
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion: 
//AddDescriptionAsComments: True
IncludeTypes: RetrieveAllProductsAsync.*
//ExcludeTypes: 
//InitializeCollections: False
//TreatTypesAsStrings: 
//DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*
*/

import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


/**
* Represents a service request to retrieve all products in an asynchronous operation.
*/
@Route(Path="/async/products", Verbs="GET")
@Api(Description="Represents a service request to retrieve all products in an asynchronous operation.")
open class RetrieveAllProductsAsync : RetrieveAllProductsBase(), IReturn<ProductQueryResponse>
{
    companion object { private val responseType = ProductQueryResponse::class.java }
    override fun getResponseType(): Any? = RetrieveAllProductsAsync.responseType
}

/**
* Represents a query response that contains a structured error information and encapsulates products.
*/
@Api(Description="Represents a query response that contains a structured error information and encapsulates products.")
open class ProductQueryResponse : QueryResponse<Product>()
{
    /**
    * The dictionary of orders associated with each found product.
    */
    @ApiMember(Description="The dictionary of orders associated with each found product.")
    open var ordersMap:HashMap<Int,ArrayList<Order>> = HashMap<Int,ArrayList<Order>>()
}

interface IPaginate
{
    var skip:Int?
    var take:Int?
}

/**
* Specifies a service to retrieve all products.
*/
@Api(Description="Specifies a service to retrieve all products.")
open class RetrieveAllProductsBase : PaginationBase(), IGet
{
    /**
    * Should the related orders of the account be included in the retrieved products?
    */
    @ApiMember(Description="Should the related orders of the account be included in the retrieved products?")
    open var includeOrders:Boolean? = null

    /**
    * Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true. 
    */
    @ApiMember(Description="Specifies the number of orders to skip per product. Applicable only when 'IncludeOrders' is true. ")
    open var skipOrders:Int? = null

    /**
    * Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true. 
    */
    @ApiMember(Description="Specifies the number of orders to include per product. Applicable only when 'IncludeOrders' is true. ")
    open var takeOrders:Int? = null
}

/**
* Represents a product.
*/
@Api(Description="Represents a product.")
open class Product : IHasName
{
    /**
    * The unique identifier of the product.
    */
    @ApiMember(Description="The unique identifier of the product.", IsRequired=true)
    open var id:Int? = null

    /**
    * The position of this instance in a collection of 'Product' instances
    */
    @ApiMember(Description="The position of this instance in a collection of 'Product' instances", IsRequired=true)
    open var index:Int? = null

    /**
    * The name of the product.
    */
    @ApiMember(Description="The name of the product.", IsRequired=true)
    @Validate(Validator="NotEmpty")
    override var name:String? = null

    /**
    * The version of the product.
    */
    @ApiMember(Description="The version of the product.", IsRequired=true)
    @Validate(Validator="NotEmpty")
    open var version:String? = null

    /**
    * The version of the product.
    */
    @ApiMember(Description="The version of the product.")
    open var description:String? = null

    /**
    * Tags associated with the product.
    */
    @ApiMember(Description="Tags associated with the product.")
    open var tags:ArrayList<String> = ArrayList<String>()
}

@DataContract
open class QueryResponse<T>
{
    @DataMember(Order=1)
    open var offset:Int? = null

    @DataMember(Order=2)
    open var total:Int? = null

    @DataMember(Order=3)
    open var results:ArrayList<T>? = null

    @DataMember(Order=4)
    open var meta:HashMap<String,String>? = null

    @DataMember(Order=5)
    open var responseStatus:ResponseStatus? = null
}

/**
* The number of query results to skip.
*/
@Api(Description="The number of query results to skip.")
open class PaginationBase : IPaginate
{
    /**
    * The number of query results to skip.
    */
    @ApiMember(Description="The number of query results to skip.")
    override var skip:Int? = null

    /**
    * The number of query results to include.
    */
    @ApiMember(Description="The number of query results to include.")
    override var take:Int? = null
}

/**
*  Specifies that a data type should have a 'Name' property.
*/
interface IHasName
{
    /**
    * The 'Name' property.
    */
    var name:String?
}