/* Options: Date: 2026-03-14 08:37:26 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: VehicleHistoryRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/v1/vehicle/history", "GET") class VehicleHistoryRequest implements IReturn, IGet, IConvertible { String? vehicleIdentifier; VehicleHistoryRequest({this.vehicleIdentifier}); VehicleHistoryRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { vehicleIdentifier = json['vehicleIdentifier']; return this; } Map toJson() => { 'vehicleIdentifier': vehicleIdentifier }; createResponse() => dynamic(); getResponseTypeName() => "dynamic"; getTypeName() => "VehicleHistoryRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'VehicleHistoryRequest': TypeInfo(TypeOf.Class, create:() => VehicleHistoryRequest()), });