/* Options: Date: 2024-12-29 02:38:46 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: CRMApplicationRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/DynamicsCRM/Application/{regent_id}", "POST") export class CRMApplicationRequest implements IReturn { public regent_id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CRMApplicationRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }