/* Options: Date: 2026-04-04 20:34:52 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://notifications.breastcancertrials.org.au //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SendOutstandingQueryEmails.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class SendOutstandingQueryEmails implements IReturn, IPost { public Date checkDate = null; public Date getCheckDate() { return checkDate; } public SendOutstandingQueryEmails setCheckDate(Date value) { this.checkDate = value; return this; } private static Object responseType = SendOutstandingQueryEmailsResponse.class; public Object getResponseType() { return responseType; } } public static class SendOutstandingQueryEmailsResponse { public ResponseStatus responseStatus = null; public Integer trialEmailCount = null; public Integer siteEmailCount = null; public ResponseStatus getResponseStatus() { return responseStatus; } public SendOutstandingQueryEmailsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getTrialEmailCount() { return trialEmailCount; } public SendOutstandingQueryEmailsResponse setTrialEmailCount(Integer value) { this.trialEmailCount = value; return this; } public Integer getSiteEmailCount() { return siteEmailCount; } public SendOutstandingQueryEmailsResponse setSiteEmailCount(Integer value) { this.siteEmailCount = value; return this; } } }