/* Options: Date: 2025-12-06 08:53:48 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Migrate.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/migrate", Verbs="GET") open class Migrate : IReturn { companion object { private val responseType = MigrateResponse::class.java } override fun getResponseType(): Any? = Migrate.responseType } open class MigrateResponse : ApiServiceResponse() { var recordsUpdated:Int? = null var recordsDeleted:Int? = null var recordsAdded:Int? = null } open class ApiServiceResponse : IServiceResponse { var description:String? = null var heading:String? = null var wasSuccessful:Boolean? = null var modelState:Object? = null }