/* Options: Date: 2025-05-05 18:49:04 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LinkOrderRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class LinkOrderResponse implements IConvertible { LinkOrderResponse(); LinkOrderResponse.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "LinkOrderResponse"; TypeContext? context = _ctx; } // @Route("/v1/OrderCiam", "POST") class LinkOrderRequest implements IReturn, IConvertible, IPost { String? CustomerCiam; String? OrderReference; String? Vin; LinkOrderRequest({this.CustomerCiam,this.OrderReference,this.Vin}); LinkOrderRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CustomerCiam = json['CustomerCiam']; OrderReference = json['OrderReference']; Vin = json['Vin']; return this; } Map toJson() => { 'CustomerCiam': CustomerCiam, 'OrderReference': OrderReference, 'Vin': Vin }; createResponse() => LinkOrderResponse(); getResponseTypeName() => "LinkOrderResponse"; getTypeName() => "LinkOrderRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'prod_api_agency_orch_mb_dhc.rapp_customers.co.uk', types: { 'LinkOrderResponse': TypeInfo(TypeOf.Class, create:() => LinkOrderResponse()), 'LinkOrderRequest': TypeInfo(TypeOf.Class, create:() => LinkOrderRequest()), });