/* Options: Date: 2026-04-03 17:58:04 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://pcs-ws-test.worldpay.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateNewShortURL.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/PCS/NewShortURL", "POST") class CreateNewShortURL implements IConvertible, IPost { String? LongGUID; String? TargetURL; CreateNewShortURL({this.LongGUID,this.TargetURL}); CreateNewShortURL.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LongGUID = json['LongGUID']; TargetURL = json['TargetURL']; return this; } Map toJson() => { 'LongGUID': LongGUID, 'TargetURL': TargetURL }; getTypeName() => "CreateNewShortURL"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pcs_ws_test.worldpay.com', types: { 'CreateNewShortURL': TypeInfo(TypeOf.Class, create:() => CreateNewShortURL()), });