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