/* Options: Date: 2026-03-22 21:16:46 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://guidsapi.bettor.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FetchGuids.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class GuidsResponse implements IConvertible { List? guids; GuidsResponse({this.guids}); GuidsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { guids = JsonConverters.fromJson(json['guids'],'List',context!); return this; } Map toJson() => { 'guids': JsonConverters.toJson(guids,'List',context!) }; getTypeName() => "GuidsResponse"; TypeContext? context = _ctx; } // @Route("/guids") class FetchGuids implements IReturn, IConvertible, IPost { int? batchSize; FetchGuids({this.batchSize}); FetchGuids.fromJson(Map json) { fromMap(json); } fromMap(Map json) { batchSize = json['batchSize']; return this; } Map toJson() => { 'batchSize': batchSize }; createResponse() => GuidsResponse(); getResponseTypeName() => "GuidsResponse"; getTypeName() => "FetchGuids"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'guidsapi.bettor.webhop.biz', types: { 'GuidsResponse': TypeInfo(TypeOf.Class, create:() => GuidsResponse()), 'FetchGuids': TypeInfo(TypeOf.Class, create:() => FetchGuids()), });