/* Options: Date: 2025-08-05 02:01:06 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: CommentsCountGetRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/comments-api/comments/count", Verbs="GET") open class CommentsCountGetRequest : IReturn> { var ThreadKey:ArrayList = ArrayList() var Status:ArrayList = ArrayList() companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = CommentsCountGetRequest.responseType } open class CollectionResponse { var TotalCount:Int? = null var Items:ArrayList = ArrayList() }