/* Options: Date: 2026-03-31 18:18:35 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentComments.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* open class GetDocumentComments : IReturn> { open var ID:UUID? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = GetDocumentComments.responseType } interface IComment { var Text:String? var Date:Date? var Username:String? var IsMine:Boolean? } open class DocumentComment : IComment { open var ID:Int? = null open var DocumentID:UUID? = null open var UserID:Int? = null override var Username:String? = null override var Text:String? = null override var Date:Date? = null override var IsMine:Boolean? = null }