/* Options: Date: 2026-04-05 18:23:52 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDealRecapTitleAndTermsForEntity.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetDealRecapTitleAndTermsForEntityViewModel implements IConvertible { String? Title; String? Terms; GetDealRecapTitleAndTermsForEntityViewModel({this.Title,this.Terms}); GetDealRecapTitleAndTermsForEntityViewModel.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Title = json['Title']; Terms = json['Terms']; return this; } Map toJson() => { 'Title': Title, 'Terms': Terms }; getTypeName() => "GetDealRecapTitleAndTermsForEntityViewModel"; TypeContext? context = _ctx; } // @Route("/Get-Deal-Recap-Title-And-Terms-For-Entity", "GET") class GetDealRecapTitleAndTermsForEntity implements IReturn, IConvertible, IGet { int? EntityId; GetDealRecapTitleAndTermsForEntity({this.EntityId}); GetDealRecapTitleAndTermsForEntity.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityId = json['EntityId']; return this; } Map toJson() => { 'EntityId': EntityId }; createResponse() => GetDealRecapTitleAndTermsForEntityViewModel(); getResponseTypeName() => "GetDealRecapTitleAndTermsForEntityViewModel"; getTypeName() => "GetDealRecapTitleAndTermsForEntity"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: { 'GetDealRecapTitleAndTermsForEntityViewModel': TypeInfo(TypeOf.Class, create:() => GetDealRecapTitleAndTermsForEntityViewModel()), 'GetDealRecapTitleAndTermsForEntity': TypeInfo(TypeOf.Class, create:() => GetDealRecapTitleAndTermsForEntity()), });