/* Options: Date: 2025-10-27 22:33:16 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: StartCampaignCommunications.* //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="/campaign/communications/start/{ScheduleInstancesId}", Verbs="GET POST") public static class StartCampaignCommunications implements IReturn { @DataMember(Order=1) public Long ScheduleInstancesId = null; @DataMember(Order=2) public Integer NoOfRecords = null; @DataMember(Order=3) public ArrayList Channels = null; public Long getScheduleInstancesId() { return ScheduleInstancesId; } public StartCampaignCommunications setScheduleInstancesId(Long value) { this.ScheduleInstancesId = value; return this; } public Integer getNoOfRecords() { return NoOfRecords; } public StartCampaignCommunications setNoOfRecords(Integer value) { this.NoOfRecords = value; return this; } public ArrayList getChannels() { return Channels; } public StartCampaignCommunications setChannels(ArrayList value) { this.Channels = value; return this; } private static Object responseType = Boolean.class; public Object getResponseType() { return responseType; } } }