/* Options: Date: 2026-04-26 03:39:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ImportEquipmentRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/equipment/import", Verbs="POST") public static class ImportEquipmentRequest implements IReturn { public String mode = null; public String getMode() { return mode; } public ImportEquipmentRequest setMode(String value) { this.mode = value; return this; } private static Object responseType = ImportEquipmentResponse.class; public Object getResponseType() { return responseType; } } public static class ImportEquipmentResponse { public Integer code = null; public String message = null; public Integer inserted = null; public Integer updated = null; public Integer skipped = null; public ArrayList errors = null; public Integer getCode() { return code; } public ImportEquipmentResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public ImportEquipmentResponse setMessage(String value) { this.message = value; return this; } public Integer getInserted() { return inserted; } public ImportEquipmentResponse setInserted(Integer value) { this.inserted = value; return this; } public Integer getUpdated() { return updated; } public ImportEquipmentResponse setUpdated(Integer value) { this.updated = value; return this; } public Integer getSkipped() { return skipped; } public ImportEquipmentResponse setSkipped(Integer value) { this.skipped = value; return this; } public ArrayList getErrors() { return errors; } public ImportEquipmentResponse setErrors(ArrayList value) { this.errors = value; return this; } } public static class ImportEquipmentRowError { public Integer row = null; public String message = null; public Integer getRow() { return row; } public ImportEquipmentRowError setRow(Integer value) { this.row = value; return this; } public String getMessage() { return message; } public ImportEquipmentRowError setMessage(String value) { this.message = value; return this; } } }