/* Options: Date: 2026-08-27 08:01:54 Version: 10.08 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: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream 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) open var brand:String? = null /** * POS Legacy */ @ApiMember(Description="POS Legacy") open var posCodes:ArrayList? = null /** * Article Codes */ @ApiMember(Description="Article Codes") open var articleCodes:ArrayList? = null /** * Cluster Id */ @ApiMember(Description="Cluster Id") open var clusterIds:ArrayList? = null /** * Include Extra Info */ @ApiMember(Description="Include Extra Info") open var includeExtraInfo:Boolean? = null /** * Include Consignment NotAuthorized POS */ @ApiMember(Description="Include Consignment NotAuthorized POS") open 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") open var Type:String? = null /** * Storage Location Identifier e.g. CPO, NEW, REP */ @ApiMember(Description="Storage Location Identifier e.g. CPO, NEW, REP") open var storageLocationId:String? = null /** * Inventory segment e.g. CPO or null */ @ApiMember(Description="Inventory segment e.g. CPO or null") open var inventorySegment: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) open var totalProductCount:Int? = null /** * Total Consignment Count */ @ApiMember(Description="Total Consignment Count", IsRequired=true) open var totalConsignmentCount:Int? = null /** * Articles */ @ApiMember(Description="Articles", IsRequired=true) open var elements:ArrayList = ArrayList() }