/* Options: Date: 2025-08-05 02:00:52 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: GetRootMethods.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/diagnostics/methods", Verbs="GET") open class GetRootMethods : IReturn { var RootOperationId:UUID? = null var Category:String? = null companion object { private val responseType = MethodsProxy::class.java } override fun getResponseType(): Any? = GetRootMethods.responseType } open class MethodsProxy { var Items:ArrayList = ArrayList() } open class MethodViewModel { var Id:UUID? = null var RootOperationId:UUID? = null var ParentOperationId:UUID? = null var Method:String? = null var Start:Date? = null var End:Date? = null var Duration:Double? = null var QueryCount:Int? = null var HasChildren:Boolean? = null }