/* Options: Date: 2025-08-05 01:58:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddExternalCacheRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/cache//add", Verbs="POST") open class AddExternalCacheRequest : IReturn { var Url:String? = null var CacheKey:String? = null var Keys:ArrayList? = null companion object { private val responseType = AddExternalCacheResponse::class.java } override fun getResponseType(): Any? = AddExternalCacheRequest.responseType } open class AddExternalCacheResponse { var Result:Boolean? = null var Message:String? = null }