/* Options: Date: 2024-10-18 04:16:18 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: GetEntitySummary.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Get the summary of an entity. */ @Route(Path="/entities/{EntityName}/{EntityID}/summary", Verbs="GET") @Api(Description="Get the summary of an entity.") open class GetEntitySummary : IReturn { /** * ID of the entity */ @ApiMember(Description="ID of the entity", IsRequired=true) var EntityID:String? = null /** * Name of the entity */ @ApiMember(Description="Name of the entity", IsRequired=true) var EntityName:String? = null companion object { private val responseType = EntitySummaryResponse::class.java } override fun getResponseType(): Any? = GetEntitySummary.responseType } open class EntitySummaryResponse { var Summary:String? = null }