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