/* Options: Date: 2026-08-17 08:23:58 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebshopDroppLocationsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class WebshopDroppLocationsResult implements IConvertible { String? locations; int? statusCode; String? message; WebshopDroppLocationsResult({this.locations,this.statusCode,this.message}); WebshopDroppLocationsResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { locations = json['locations']; statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'locations': locations, 'statusCode': statusCode, 'message': message }; getTypeName() => "WebshopDroppLocationsResult"; TypeContext? context = _ctx; } // @Route("/Webshop/Dropp/Locations", "GET") class WebshopDroppLocationsRequest implements IReturn, IConvertible { WebshopDroppLocationsRequest(); WebshopDroppLocationsRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => WebshopDroppLocationsResult(); getResponseTypeName() => "WebshopDroppLocationsResult"; getTypeName() => "WebshopDroppLocationsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'WebshopDroppLocationsResult': TypeInfo(TypeOf.Class, create:() => WebshopDroppLocationsResult()), 'WebshopDroppLocationsRequest': TypeInfo(TypeOf.Class, create:() => WebshopDroppLocationsRequest()), });