/* Options: Date: 2024-10-18 04:32:27 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetEntitySummary.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Get the summary of an entity. */ @Route(Path="/entities/{EntityName}/{EntityID}/summary", Verbs="GET") @Api(Description="Get the summary of an entity.") public static class GetEntitySummary 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 GetEntitySummary setEntityID(String value) { this.EntityID = value; return this; } public String getEntityName() { return EntityName; } public GetEntitySummary setEntityName(String value) { this.EntityName = value; return this; } private static Object responseType = EntitySummaryResponse.class; public Object getResponseType() { return responseType; } } public static class EntitySummaryResponse { public String Summary = null; public String getSummary() { return Summary; } public EntitySummaryResponse setSummary(String value) { this.Summary = value; return this; } } }