/* Options: Date: 2025-12-06 08:52:29 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Migrate.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ApiServiceResponse implements IServiceResponse { public description: string; public heading: string; public wasSuccessful: boolean; public modelState: Object; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MigrateResponse extends ApiServiceResponse { public recordsUpdated: number; public recordsDeleted: number; public recordsAdded: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/migrate", "GET") export class Migrate implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Migrate'; } public getMethod() { return 'GET'; } public createResponse() { return new MigrateResponse(); } }