/* Options: Date: 2026-08-17 08:24:37 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebshopCatalogRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Webshop/Catalog/{OwnerId}", Verbs="GET") open class WebshopCatalogRequest : IReturn { var ownerId:Int? = null var externalId:String? = null companion object { private val responseType = WebshopCatalogResult::class.java } override fun getResponseType(): Any? = WebshopCatalogRequest.responseType } open class WebshopCatalogResult { var ownerId:Int? = null var products:ArrayList = ArrayList() var delivery:WebshopDeliveryOptions? = null var statusCode:Int? = null var message:String? = null } open class WebshopProductSummary { var id:Int? = null var ownerId:Int? = null var name:String? = null var description:String? = null var category:String? = null var subCategory:String? = null var defaultPriceMinor:Int? = null var imageUrl:String? = null var viewOrder:Int? = null var status:String? = null var payoutInfoId:Int? = null var legacyItemId:Int? = null var variants:ArrayList = ArrayList() } open class WebshopDeliveryOptions { var pickupAllowed:Boolean? = null var droppAllowed:Boolean? = null var shippedAllowed:Boolean? = null var pickupAddress:String? = null var pickupDescription:String? = null var droppFeeMinor:Int? = null var shippedFeeMinor:Int? = null var orderEmail:String? = null } open class WebshopVariantSummary { var id:Int? = null var productId:Int? = null var size:String? = null var color:String? = null var stockOnHand:Int? = null var quantitySold:Int? = null var availableQuantity:Int? = null var status:String? = null }