/* Options: Date: 2026-04-05 18:21:28 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: GetExistingContactsInBuyerForEntity.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/Buyers/Get-Existing-Contacts-In-Buyer-For-Entity", "GET") class GetExistingContactsInBuyerForEntity implements IConvertible, IGet { int? EntityId; GetExistingContactsInBuyerForEntity({this.EntityId}); GetExistingContactsInBuyerForEntity.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityId = json['EntityId']; return this; } Map toJson() => { 'EntityId': EntityId }; getTypeName() => "GetExistingContactsInBuyerForEntity"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'internal.thebunkerbridge.com', types: { 'GetExistingContactsInBuyerForEntity': TypeInfo(TypeOf.Class, create:() => GetExistingContactsInBuyerForEntity()), });