/* Options: Date: 2025-08-05 02:00:51 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: FilesGetRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/files-api", Verbs="GET") open class FilesGetRequest : IReturn { var Path:String? = null var Extension:String? = null var Skip:Int? = null var Take:Int? = null companion object { private val responseType = FilesViewModel::class.java } override fun getResponseType(): Any? = FilesGetRequest.responseType } open class FilesViewModel { var Items:ArrayList = ArrayList() var Error:String? = null } open class FilesItemViewModel { var Name:String? = null var IsFolder:Boolean? = null var HasChildren:Boolean? = null }