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