/* Options: Date: 2024-10-18 04:38:52 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProjectsCount.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/projects/count", Verbs="GET POST") open class GetProjectsCount : IReturn { var PageSize:Int? = null var PageNumber:Int? = null var SearchCriteria:String? = null var Active:Boolean? = null var RegistrationProfileFieldID:UUID? = null var DependableFields:ArrayList = ArrayList() companion object { private val responseType = Int::class.java } override fun getResponseType(): Any? = GetProjectsCount.responseType } open class RegistrationProfileFieldValue { var DocumentFieldID:UUID? = null var Value:String? = null var ShadowValue:String? = null var IsModifiedByUser:Boolean? = null }