/* Options: Date: 2025-12-06 08:59:48 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Migrate.* //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="/migrate", Verbs="GET") public static class Migrate implements IReturn { private static Object responseType = MigrateResponse.class; public Object getResponseType() { return responseType; } } public static class MigrateResponse extends ApiServiceResponse { public Integer recordsUpdated = null; public Integer recordsDeleted = null; public Integer recordsAdded = null; public Integer getRecordsUpdated() { return recordsUpdated; } public MigrateResponse setRecordsUpdated(Integer value) { this.recordsUpdated = value; return this; } public Integer getRecordsDeleted() { return recordsDeleted; } public MigrateResponse setRecordsDeleted(Integer value) { this.recordsDeleted = value; return this; } public Integer getRecordsAdded() { return recordsAdded; } public MigrateResponse setRecordsAdded(Integer value) { this.recordsAdded = value; return this; } } public static class ApiServiceResponse implements IServiceResponse { public String description = null; public String heading = null; public Boolean wasSuccessful = null; public Object modelState = null; public String getDescription() { return description; } public ApiServiceResponse setDescription(String value) { this.description = value; return this; } public String getHeading() { return heading; } public ApiServiceResponse setHeading(String value) { this.heading = value; return this; } public Boolean isWasSuccessful() { return wasSuccessful; } public ApiServiceResponse setWasSuccessful(Boolean value) { this.wasSuccessful = value; return this; } public Object getModelState() { return modelState; } public ApiServiceResponse setModelState(Object value) { this.modelState = value; return this; } } }