/* Options: Date: 2025-12-06 05:23:57 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: MassCommunicationRequest.* //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/MassCommunication", Verbs="POST,OPTIONS") public static class MassCommunicationRequest implements IReturn { public String Message = null; public ArrayList Recipients = new ArrayList(); public ArrayList Locations = new ArrayList(); public Boolean EmailMissingNumbers = null; public Boolean EmailAll = null; public Boolean SMSAll = null; public String getMessage() { return Message; } public MassCommunicationRequest setMessage(String value) { this.Message = value; return this; } public ArrayList getRecipients() { return Recipients; } public MassCommunicationRequest setRecipients(ArrayList value) { this.Recipients = value; return this; } public ArrayList getLocations() { return Locations; } public MassCommunicationRequest setLocations(ArrayList value) { this.Locations = value; return this; } public Boolean isEmailMissingNumbers() { return EmailMissingNumbers; } public MassCommunicationRequest setEmailMissingNumbers(Boolean value) { this.EmailMissingNumbers = value; return this; } public Boolean isEmailAll() { return EmailAll; } public MassCommunicationRequest setEmailAll(Boolean value) { this.EmailAll = value; return this; } public Boolean isSmsAll() { return SMSAll; } public MassCommunicationRequest setSmsAll(Boolean value) { this.SMSAll = value; return this; } private static Object responseType = MassCommunicationResponse.class; public Object getResponseType() { return responseType; } } public static class MassCommunicationResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public Integer Recipients = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public MassCommunicationResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public MassCommunicationResponse setSuccess(Boolean value) { this.Success = value; return this; } public Integer getRecipients() { return Recipients; } public MassCommunicationResponse setRecipients(Integer value) { this.Recipients = value; return this; } } }