/* Options: Date: 2026-09-21 22:55:43 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TriConfirmDispatch.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/TriConfirmDispatch") class TriConfirmDispatch implements IConvertible, IPost { /** * Mission detail reference */ // @ApiMember(Description="Mission detail reference", IsRequired=true) String? BarcodeValue; /** * Rack name */ // @ApiMember(Description="Rack name", IsRequired=true) String? RackName; /** * Expected position on rack */ // @ApiMember(Description="Expected position on rack", IsRequired=true) String? RackPosition; /** * User id */ // @ApiMember(Description="User id", IsRequired=true) String? UserId; /** * Item label */ // @ApiMember(Description="Item label") String? Label; TriConfirmDispatch({this.BarcodeValue,this.RackName,this.RackPosition,this.UserId,this.Label}); TriConfirmDispatch.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BarcodeValue = json['BarcodeValue']; RackName = json['RackName']; RackPosition = json['RackPosition']; UserId = json['UserId']; Label = json['Label']; return this; } Map toJson() => { 'BarcodeValue': BarcodeValue, 'RackName': RackName, 'RackPosition': RackPosition, 'UserId': UserId, 'Label': Label }; getTypeName() => "TriConfirmDispatch"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'TriConfirmDispatch': TypeInfo(TypeOf.Class, create:() => TriConfirmDispatch()), });