/* Options: Date: 2025-10-27 21:48:29 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: UploadCampaignSegments.* //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 { public static class UploadCampaignSegments extends ArrayList implements IReturn { private static Object responseType = BatchCampaignSegmentsResponse.class; public Object getResponseType() { return responseType; } } public static class BatchCampaignSegmentsResponse { public Integer Records = null; public ResponseStatus ResponseStatus = null; public Integer getRecords() { return Records; } public BatchCampaignSegmentsResponse setRecords(Integer value) { this.Records = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public BatchCampaignSegmentsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class BatchCampaignSegmentsRequest { public Long Id = null; public Long CampaignsId = null; public Long SegmentsId = null; public Boolean IsEnabled = null; public Long getId() { return Id; } public BatchCampaignSegmentsRequest setId(Long value) { this.Id = value; return this; } public Long getCampaignsId() { return CampaignsId; } public BatchCampaignSegmentsRequest setCampaignsId(Long value) { this.CampaignsId = value; return this; } public Long getSegmentsId() { return SegmentsId; } public BatchCampaignSegmentsRequest setSegmentsId(Long value) { this.SegmentsId = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BatchCampaignSegmentsRequest setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } }