/* Options: Date: 2025-07-04 10:19: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: GetEntityIdentifier.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Returns the identifier information of an entity. */ @Route(Path="/entities/{EntityName}/{EntityID}", Verbs="GET") @Api(Description="Returns the identifier information of an entity.") open class GetEntityIdentifier : 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 = CommonEntityIdentifier::class.java } override fun getResponseType(): Any? = GetEntityIdentifier.responseType } open class CommonEntityIdentifier { var ID:String? = null var DisplayName:String? = null var EntityName:String? = null }