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