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