/* Options: Date: 2026-08-17 10:08:31 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: WebshopDroppLocationsRequest.* //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/Dropp/Locations", Verbs="GET") open class WebshopDroppLocationsRequest : IReturn { companion object { private val responseType = WebshopDroppLocationsResult::class.java } override fun getResponseType(): Any? = WebshopDroppLocationsRequest.responseType } open class WebshopDroppLocationsResult { var locations:String? = null var statusCode:Int? = null var message:String? = null }