/* Options: Date: 2025-06-27 23:10:36 Version: 8.81 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: DisplayStockBlueprintRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DisplayStockBlueprintResponse implements IConvertible { bool? success; String? message; DisplayStockBlueprintResponse({this.success,this.message}); DisplayStockBlueprintResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; message = json['message']; return this; } Map toJson() => { 'success': success, 'message': message }; getTypeName() => "DisplayStockBlueprintResponse"; TypeContext? context = _ctx; } // @Route("/v1/displaystockblueprint/fileprocess", "POST") class DisplayStockBlueprintRequest implements IReturn, IPost, IConvertible { DisplayStockBlueprintRequest(); DisplayStockBlueprintRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => DisplayStockBlueprintResponse(); getResponseTypeName() => "DisplayStockBlueprintResponse"; getTypeName() => "DisplayStockBlueprintRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'DisplayStockBlueprintResponse': TypeInfo(TypeOf.Class, create:() => DisplayStockBlueprintResponse()), 'DisplayStockBlueprintRequest': TypeInfo(TypeOf.Class, create:() => DisplayStockBlueprintRequest()), });