/* Options: Date: 2025-07-04 09:13:32 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: GetDocumentAttachmentsByEntityType.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/entity/{EntityType}/{ID}/attachments", Verbs="GET") public static class GetDocumentAttachmentsByEntityType implements IReturn> { public String ID = null; public String EntityType = null; public Boolean IncludeSelf = null; public String getId() { return ID; } public GetDocumentAttachmentsByEntityType setId(String value) { this.ID = value; return this; } public String getEntityType() { return EntityType; } public GetDocumentAttachmentsByEntityType setEntityType(String value) { this.EntityType = value; return this; } public Boolean isIncludeSelf() { return IncludeSelf; } public GetDocumentAttachmentsByEntityType setIncludeSelf(Boolean value) { this.IncludeSelf = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }