/* Options: Date: 2026-03-14 08:14:52 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PostBaumusterModelMapRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class PostBaumusterModelMapResponse implements IConvertible { bool? success; PostBaumusterModelMapResponse({this.success}); PostBaumusterModelMapResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; return this; } Map toJson() => { 'success': success }; getTypeName() => "PostBaumusterModelMapResponse"; TypeContext? context = _ctx; } // @Route("/v1/BaumusterModelMap", "POST") class PostBaumusterModelMapRequest implements IReturn, IPost, IConvertible { PostBaumusterModelMapRequest(); PostBaumusterModelMapRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => PostBaumusterModelMapResponse(); getResponseTypeName() => "PostBaumusterModelMapResponse"; getTypeName() => "PostBaumusterModelMapRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'PostBaumusterModelMapResponse': TypeInfo(TypeOf.Class, create:() => PostBaumusterModelMapResponse()), 'PostBaumusterModelMapRequest': TypeInfo(TypeOf.Class, create:() => PostBaumusterModelMapRequest()), });