/* Options: Date: 2025-12-14 15:09:12 Version: 6.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBVansOnlineCustomerAccount //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Delete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ReturnStatus implements IConvertible { String? ReturnCode; String? Message; ReturnStatus({this.ReturnCode,this.Message}); ReturnStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ReturnCode = json['ReturnCode']; Message = json['Message']; return this; } Map toJson() => { 'ReturnCode': ReturnCode, 'Message': Message }; getTypeName() => "ReturnStatus"; TypeContext? context = _ctx; } class DeleteResponse implements IConvertible { ReturnStatus? Status; DeleteResponse({this.Status}); DeleteResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Status = JsonConverters.fromJson(json['Status'],'ReturnStatus',context!); return this; } Map toJson() => { 'Status': JsonConverters.toJson(Status,'ReturnStatus',context!) }; getTypeName() => "DeleteResponse"; TypeContext? context = _ctx; } // @Route("/delete/", "POST") class Delete implements IReturn, IConvertible { String? CiamId; String? FirstName; String? LastName; String? EmailAddress; String? MobileTelephoneNumber; Delete({this.CiamId,this.FirstName,this.LastName,this.EmailAddress,this.MobileTelephoneNumber}); Delete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CiamId = json['CiamId']; FirstName = json['FirstName']; LastName = json['LastName']; EmailAddress = json['EmailAddress']; MobileTelephoneNumber = json['MobileTelephoneNumber']; return this; } Map toJson() => { 'CiamId': CiamId, 'FirstName': FirstName, 'LastName': LastName, 'EmailAddress': EmailAddress, 'MobileTelephoneNumber': MobileTelephoneNumber }; createResponse() => DeleteResponse(); getResponseTypeName() => "DeleteResponse"; getTypeName() => "Delete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'webservices.mbukdatabase.co.uk', types: { 'ReturnStatus': TypeInfo(TypeOf.Class, create:() => ReturnStatus()), 'DeleteResponse': TypeInfo(TypeOf.Class, create:() => DeleteResponse()), 'Delete': TypeInfo(TypeOf.Class, create:() => Delete()), });