/* Options: Date: 2025-10-28 01:25:03 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: SetCampaignActionForm.* //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/actionform", Verbs="PUT") public static class SetCampaignActionForm implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long CampaignsId = null; public Long CampaignActionsId = null; public ArrayList FormMeta = null; public Long getCampaignsId() { return CampaignsId; } public SetCampaignActionForm setCampaignsId(Long value) { this.CampaignsId = value; return this; } public Long getCampaignActionsId() { return CampaignActionsId; } public SetCampaignActionForm setCampaignActionsId(Long value) { this.CampaignActionsId = value; return this; } public ArrayList getFormMeta() { return FormMeta; } public SetCampaignActionForm setFormMeta(ArrayList value) { this.FormMeta = value; return this; } private static Object responseType = SetCampaignActionFormResponse.class; public Object getResponseType() { return responseType; } } public static class SetCampaignActionFormResponse { public Boolean Status = null; public ResponseStatus ResponseStatus = null; public Boolean isStatus() { return Status; } public SetCampaignActionFormResponse setStatus(Boolean value) { this.Status = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public SetCampaignActionFormResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class FormField { public Integer Id = null; public String ControlType = null; public String Label = null; public String Placeholder = null; public String Help = null; public String Name = null; public Integer SortOrder = null; public ArrayList Options = null; public ArrayList Validation = null; public Integer getId() { return Id; } public FormField setId(Integer value) { this.Id = value; return this; } public String getControlType() { return ControlType; } public FormField setControlType(String value) { this.ControlType = value; return this; } public String getLabel() { return Label; } public FormField setLabel(String value) { this.Label = value; return this; } public String getPlaceholder() { return Placeholder; } public FormField setPlaceholder(String value) { this.Placeholder = value; return this; } public String getHelp() { return Help; } public FormField setHelp(String value) { this.Help = value; return this; } public String getName() { return Name; } public FormField setName(String value) { this.Name = value; return this; } public Integer getSortOrder() { return SortOrder; } public FormField setSortOrder(Integer value) { this.SortOrder = value; return this; } public ArrayList getOptions() { return Options; } public FormField setOptions(ArrayList value) { this.Options = value; return this; } public ArrayList getValidation() { return Validation; } public FormField setValidation(ArrayList value) { this.Validation = value; return this; } } public static class FormFieldOption { public String Value = null; public String Label = null; public String getValue() { return Value; } public FormFieldOption setValue(String value) { this.Value = value; return this; } public String getLabel() { return Label; } public FormFieldOption setLabel(String value) { this.Label = value; return this; } } }