/* Options: Date: 2025-10-28 01:28:38 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: TestEdit.* //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="/test/{Id}", Verbs="PUT") @DataContract public static class TestEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Integer Id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public String Desc = null; public Integer getId() { return Id; } public TestEdit setId(Integer value) { this.Id = value; return this; } public String getDesc() { return Desc; } public TestEdit setDesc(String value) { this.Desc = value; return this; } private static Object responseType = TestEditResponse.class; public Object getResponseType() { return responseType; } } public static class TestEditResponse { @DataMember(Order=1) public Integer Id = null; @DataMember(Order=2) public String Desc = null; @DataMember(Order=4) public ResponseStatus ResponseStatus = null; public Integer getId() { return Id; } public TestEditResponse setId(Integer value) { this.Id = value; return this; } public String getDesc() { return Desc; } public TestEditResponse setDesc(String value) { this.Desc = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public TestEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }