/* Options: Date: 2025-10-28 02:07:57 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: BatchDataErrorsEdit.* //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="/batch_data_errors/{Id}", Verbs="PUT") @DataContract public static class BatchDataErrorsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=2) public Long BatchId = null; @DataMember(Order=3) public String Type = null; @DataMember(Order=4) public String String = null; @DataMember(Order=5) public Integer Row = null; public Long getId() { return Id; } public BatchDataErrorsEdit setId(Long value) { this.Id = value; return this; } public Long getBatchId() { return BatchId; } public BatchDataErrorsEdit setBatchId(Long value) { this.BatchId = value; return this; } public String getType() { return Type; } public BatchDataErrorsEdit setType(String value) { this.Type = value; return this; } public String getString() { return String; } public BatchDataErrorsEdit setString(String value) { this.String = value; return this; } public Integer getRow() { return Row; } public BatchDataErrorsEdit setRow(Integer value) { this.Row = value; return this; } private static Object responseType = BatchDataErrorsEditResponse.class; public Object getResponseType() { return responseType; } } public static class BatchDataErrorsEditResponse { @DataMember(Order=1) public Long Id = null; @DataMember(Order=2) public Long BatchId = null; @DataMember(Order=3) public String Type = null; @DataMember(Order=4) public String String = null; @DataMember(Order=5) public Integer Row = null; @DataMember(Order=7) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public BatchDataErrorsEditResponse setId(Long value) { this.Id = value; return this; } public Long getBatchId() { return BatchId; } public BatchDataErrorsEditResponse setBatchId(Long value) { this.BatchId = value; return this; } public String getType() { return Type; } public BatchDataErrorsEditResponse setType(String value) { this.Type = value; return this; } public String getString() { return String; } public BatchDataErrorsEditResponse setString(String value) { this.String = value; return this; } public Integer getRow() { return Row; } public BatchDataErrorsEditResponse setRow(Integer value) { this.Row = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public BatchDataErrorsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }