/* Options: Date: 2025-10-28 04:23:42 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: ConfigurationSegmentsEdit.* //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="/configuration_segments/{Id}", Verbs="PUT") @DataContract public static class ConfigurationSegmentsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long ConfigurationsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long SegmentsId = null; public Long getId() { return Id; } public ConfigurationSegmentsEdit setId(Long value) { this.Id = value; return this; } public Long getConfigurationsId() { return ConfigurationsId; } public ConfigurationSegmentsEdit setConfigurationsId(Long value) { this.ConfigurationsId = value; return this; } public Long getSegmentsId() { return SegmentsId; } public ConfigurationSegmentsEdit setSegmentsId(Long value) { this.SegmentsId = value; return this; } private static Object responseType = ConfigurationSegmentsEditResponse.class; public Object getResponseType() { return responseType; } } public static class ConfigurationSegmentsEditResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=2) public Long ConfigurationsId = null; @DataMember(Order=3) public Long SegmentsId = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public ConfigurationSegmentsEditResponse setId(Long value) { this.Id = value; return this; } public Long getConfigurationsId() { return ConfigurationsId; } public ConfigurationSegmentsEditResponse setConfigurationsId(Long value) { this.ConfigurationsId = value; return this; } public Long getSegmentsId() { return SegmentsId; } public ConfigurationSegmentsEditResponse setSegmentsId(Long value) { this.SegmentsId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ConfigurationSegmentsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }