/* Options: Date: 2025-12-06 05:22:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EmailQueueSearchRequest.* //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="/v1/EmailQueueSearch", Verbs="GET,OPTIONS") // @Route(Path="/v1/EmailQueueSearch/{SearchTerm}", Verbs="GET,OPTIONS") public static class EmailQueueSearchRequest implements IReturn { public String SearchTerm = null; public String getSearchTerm() { return SearchTerm; } public EmailQueueSearchRequest setSearchTerm(String value) { this.SearchTerm = value; return this; } private static Object responseType = EmailQueueSearchResponse.class; public Object getResponseType() { return responseType; } } public static class EmailQueueSearchResponse { public ArrayList QueueSearchResults = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getQueueSearchResults() { return QueueSearchResults; } public EmailQueueSearchResponse setQueueSearchResults(ArrayList value) { this.QueueSearchResults = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EmailQueueSearchResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class EmailQueue { public Integer EmailQueueId = null; public String Recipient = null; public String Sender = null; public String Subject = null; public String Body = null; public Boolean IsBodyHTML = null; public Boolean SendThroughAppEmail = null; public String SenderUserId = null; public String EmailFromName = null; public Date DateCompleted = null; public Date DateToSend = null; public Integer FailCount = null; public Integer getEmailQueueId() { return EmailQueueId; } public EmailQueue setEmailQueueId(Integer value) { this.EmailQueueId = value; return this; } public String getRecipient() { return Recipient; } public EmailQueue setRecipient(String value) { this.Recipient = value; return this; } public String getSender() { return Sender; } public EmailQueue setSender(String value) { this.Sender = value; return this; } public String getSubject() { return Subject; } public EmailQueue setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public EmailQueue setBody(String value) { this.Body = value; return this; } public Boolean getIsBodyHTML() { return IsBodyHTML; } public EmailQueue setIsBodyHTML(Boolean value) { this.IsBodyHTML = value; return this; } public Boolean isSendThroughAppEmail() { return SendThroughAppEmail; } public EmailQueue setSendThroughAppEmail(Boolean value) { this.SendThroughAppEmail = value; return this; } public String getSenderUserId() { return SenderUserId; } public EmailQueue setSenderUserId(String value) { this.SenderUserId = value; return this; } public String getEmailFromName() { return EmailFromName; } public EmailQueue setEmailFromName(String value) { this.EmailFromName = value; return this; } public Date getDateCompleted() { return DateCompleted; } public EmailQueue setDateCompleted(Date value) { this.DateCompleted = value; return this; } public Date getDateToSend() { return DateToSend; } public EmailQueue setDateToSend(Date value) { this.DateToSend = value; return this; } public Integer getFailCount() { return FailCount; } public EmailQueue setFailCount(Integer value) { this.FailCount = value; return this; } } }