/* Options: Date: 2026-09-21 22:54:32 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: SetContainerLocation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/SetContainerLocation/") class SetContainerLocation implements IConvertible, IPost { /** * Container Code */ // @ApiMember(Description="Container Code", IsRequired=true) String? ContainerCode; /** * Location */ // @ApiMember(Description="Location", IsRequired=true) String? Location; SetContainerLocation({this.ContainerCode,this.Location}); SetContainerLocation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ContainerCode = json['ContainerCode']; Location = json['Location']; return this; } Map toJson() => { 'ContainerCode': ContainerCode, 'Location': Location }; getTypeName() => "SetContainerLocation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'SetContainerLocation': TypeInfo(TypeOf.Class, create:() => SetContainerLocation()), });