/* Options: Date: 2026-03-31 18:31:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPreview.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/preview/{EntityType}/{ID}", Verbs="GET") public static class GetPreview implements IReturn { public String ID = null; public String EntityType = null; public String getId() { return ID; } public GetPreview setId(String value) { this.ID = value; return this; } public String getEntityType() { return EntityType; } public GetPreview setEntityType(String value) { this.EntityType = value; return this; } private static Object responseType = Preview.class; public Object getResponseType() { return responseType; } } public static class Preview { } }