/* Options: Date: 2024-12-23 11:55:36 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LotteryAvailabePointsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library ConsumerApi; import 'package:servicestack/servicestack.dart'; class LotteryAvailabePointsResponse implements IConvertible { int? availablePoints; LotteryAvailabePointsResponse({this.availablePoints}); LotteryAvailabePointsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { availablePoints = json['availablePoints']; return this; } Map toJson() => { 'availablePoints': availablePoints }; getTypeName() => "LotteryAvailabePointsResponse"; TypeContext? context = _ctx; } // @Route("/lottery/points", "GET") class LotteryAvailabePointsRequest implements IReturn, IGet, IConvertible { LotteryAvailabePointsRequest(); LotteryAvailabePointsRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => LotteryAvailabePointsResponse(); getResponseTypeName() => "LotteryAvailabePointsResponse"; getTypeName() => "LotteryAvailabePointsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ConsumerApi', types: { 'LotteryAvailabePointsResponse': TypeInfo(TypeOf.Class, create:() => LotteryAvailabePointsResponse()), 'LotteryAvailabePointsRequest': TypeInfo(TypeOf.Class, create:() => LotteryAvailabePointsRequest()), });