/* Options: Date: 2025-06-27 20:37:43 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ValidateBulkUnSecureRequest.* //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="/v1/Vehicle/ValidateBulkUnSecure", Verbs="POST") public static class ValidateBulkUnSecureRequest implements IReturn, IPost { private static Object responseType = ValidateBulkSecureProcessResponse.class; public Object getResponseType() { return responseType; } } public static class ValidateBulkSecureProcessResponse { public Boolean success = null; public ArrayList validationRows = new ArrayList(); public Boolean isSuccess() { return success; } public ValidateBulkSecureProcessResponse setSuccess(Boolean value) { this.success = value; return this; } public ArrayList getValidationRows() { return validationRows; } public ValidateBulkSecureProcessResponse setValidationRows(ArrayList value) { this.validationRows = value; return this; } } public static class BulkSecureValidationRow extends BulkSecureRow { public String failureReason = null; public String getFailureReason() { return failureReason; } public BulkSecureValidationRow setFailureReason(String value) { this.failureReason = value; return this; } } public static class BulkSecureRow { public Integer row = null; public String comm = null; public String reason = null; public Integer getRow() { return row; } public BulkSecureRow setRow(Integer value) { this.row = value; return this; } public String getComm() { return comm; } public BulkSecureRow setComm(String value) { this.comm = value; return this; } public String getReason() { return reason; } public BulkSecureRow setReason(String value) { this.reason = value; return this; } } }