/* Options: Date: 2024-12-29 03:00:59 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CourseRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CourseResponse { public id?: number; public course_name: string; public title: string; public pretty_title: string; public course_description: string; public is_active: boolean; public added_date?: string; public added_by: string; public changed_date?: string; public changed_by: string; public timestamp: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Course/{id}", "POST") export class CourseRequest implements IReturn { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CourseRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new CourseResponse(); } }