/* Options: Date: 2024-10-18 04:17:00 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: GetProjectDetails.* //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/{ID}", Verbs="GET") open class GetProjectDetails : IReturn { var ID:Int? = null companion object { private val responseType = ProjectDetails::class.java } override fun getResponseType(): Any? = GetProjectDetails.responseType } open class ProjectDetails { var ID:Int? = null var GlobalID:UUID? = null var Number:String? = null var Name:String? = null var Description1:String? = null var Description2:String? = null var Active:Boolean? = null var CorrespondenceInternalCompanyID:Int? = null var CorrespondenceInternalCompanyName:String? = null var CorrespondenceInternalCompanyGlobalID:UUID? = null var Postalcode:String? = null var City:String? = null var CountryID:Int? = null var CountryGlobalID:UUID? = null var CountryName:String? = null var GeoLocation:String? = null var AddressComplete:String? = null var CategoryID:Int? = null var CategoryDescription:String? = null var CategoryGlobalID:UUID? = null }