/* Options: Date: 2026-05-19 10:47:15 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetStockSlim.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/stock/{brand}/slim", Verbs="GET") open class GetStockSlim : IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) var brand:String? = null /** * POS Legacy */ @ApiMember(Description="POS Legacy") var posCodes:ArrayList = ArrayList() /** * Article Codes */ @ApiMember(Description="Article Codes") var articleCodes:ArrayList = ArrayList() /** * Cluster Id */ @ApiMember(Description="Cluster Id") var clusterIds:ArrayList = ArrayList() /** * Include Extra Info */ @ApiMember(Description="Include Extra Info") var includeExtraInfo:Boolean? = null /** * Include Consignment NotAuthorized POS */ @ApiMember(Description="Include Consignment NotAuthorized POS") var includeConsignmentNotAuthorizedPOS:Boolean? = null /** * Item type, 'standard' OR 'consigned'. By default, all are coming */ @ApiMember(Description="Item type, 'standard' OR 'consigned'. By default, all are coming") @SerializedName("type") var Type:String? = null companion object { private val responseType = GetStockSlimResponse::class.java } override fun getResponseType(): Any? = GetStockSlim.responseType } open class GetStockSlimResponse { /** * Total Product Count */ @ApiMember(Description="Total Product Count", IsRequired=true) var totalProductCount:Int? = null /** * Total Consignment Count */ @ApiMember(Description="Total Consignment Count", IsRequired=true) var totalConsignmentCount:Int? = null /** * Articles */ @ApiMember(Description="Articles", IsRequired=true) var elements:ArrayList = ArrayList() }