/* Options: Date: 2025-07-04 09:30:12 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetEntityIdentifier.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Returns the identifier information of an entity. */ @Route(Path="/entities/{EntityName}/{EntityID}", Verbs="GET") @Api(Description="Returns the identifier information of an entity.") public static class GetEntityIdentifier implements IReturn { /** * ID of the entity */ @ApiMember(Description="ID of the entity", IsRequired=true) public String EntityID = null; /** * Name of the entity */ @ApiMember(Description="Name of the entity", IsRequired=true) public String EntityName = null; public String getEntityID() { return EntityID; } public GetEntityIdentifier setEntityID(String value) { this.EntityID = value; return this; } public String getEntityName() { return EntityName; } public GetEntityIdentifier setEntityName(String value) { this.EntityName = value; return this; } private static Object responseType = CommonEntityIdentifier.class; public Object getResponseType() { return responseType; } } public static class CommonEntityIdentifier { public String ID = null; public String DisplayName = null; public String EntityName = null; public String getId() { return ID; } public CommonEntityIdentifier setId(String value) { this.ID = value; return this; } public String getDisplayName() { return DisplayName; } public CommonEntityIdentifier setDisplayName(String value) { this.DisplayName = value; return this; } public String getEntityName() { return EntityName; } public CommonEntityIdentifier setEntityName(String value) { this.EntityName = value; return this; } } }