/* Options: Date: 2024-10-06 10:29:41 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: CRMListRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/DynamicsCRM/List/{guid}", "POST") export class CRMListRequest implements IReturn { public guid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CRMListRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }