/* Options: Date: 2025-07-04 09:23:15 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: GetEntityThumbnail.* //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 thumbnail of an entity. */ @Route(Path="/entities/{EntityName}/{EntityID}/thumbnail", Verbs="GET") @Api(Description="Get the thumbnail of an entity.") public static class GetEntityThumbnail 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 GetEntityThumbnail setEntityID(String value) { this.EntityID = value; return this; } public String getEntityName() { return EntityName; } public GetEntityThumbnail setEntityName(String value) { this.EntityName = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }