/* Options: Date: 2025-08-05 02:42:53 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: RestoreRecycleBinItems.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/recycle-bin/batch/restore", Verbs="POST") open class RestoreRecycleBinItems : IReturn { var Ids:ArrayList? = null companion object { private val responseType = BatchRestoreModalMessageProxy::class.java } override fun getResponseType(): Any? = RestoreRecycleBinItems.responseType } open class BatchRestoreModalMessageProxy : ModalMessageProxy() { var InvalidItems:ArrayList? = null } open class ModalMessageProxy { var IsRecoverable:Boolean? = null var HeaderText:String? = null var BodyText:String? = null var ActionButtonText:String? = null var HasCancelButton:Boolean? = null }