/* Options: Date: 2025-07-04 09:58:27 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentsCount.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/documents/count", Verbs="GET POST") open class GetDocumentsCount : IReturn { var ViewID:UUID? = null var PageSize:Int? = null var PageNumber:Int? = null var SearchCriteria:String? = null var ExplorerID:UUID? = null var Path:String? = null var ExternalNumber:String? = null var ModifiedSince:Date? = null var AllVersions:Boolean? = null var Archived:Boolean? = null var FilterName:String? = null var ProgCode:String? = null var RegistrationProfileFieldID:UUID? = null var DependableFields:ArrayList = ArrayList() companion object { private val responseType = Int::class.java } override fun getResponseType(): Any? = GetDocumentsCount.responseType } open class RegistrationProfileFieldValue { var DocumentFieldID:UUID? = null var Value:String? = null var ShadowValue:String? = null var IsModifiedByUser:Boolean? = null }