/* Options: Date: 2025-12-12 22:08:51 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Migrate.* //ExcludeTypes: //DefaultImports: */ export interface IServiceResponse { wasSuccessful: boolean; description: string; heading: string; } 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); } } // @Route("/test/migrate") 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 ApiServiceResponse(); } }