/* Options: Date: 2026-04-05 18:21:30 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDealRecapTitleAndTermsForEntity.* //ExcludeTypes: //DefaultImports: */ export class GetDealRecapTitleAndTermsForEntityViewModel { public Title: string; public Terms: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Get-Deal-Recap-Title-And-Terms-For-Entity", "GET") export class GetDealRecapTitleAndTermsForEntity implements IReturn { public EntityId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDealRecapTitleAndTermsForEntity'; } public getMethod() { return 'GET'; } public createResponse() { return new GetDealRecapTitleAndTermsForEntityViewModel(); } }