/* Options: Date: 2026-06-03 08:44:29 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PublishPackage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/voss/package", "PUT") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class PublishPackage implements IConvertible, IPut { String? PackageId; PublishPackage({this.PackageId}); PublishPackage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PackageId = json['PackageId']; return this; } Map toJson() => { 'PackageId': PackageId }; getTypeName() => "PublishPackage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'PublishPackage': TypeInfo(TypeOf.Class, create:() => PublishPackage()), });