/* Options: Date: 2026-03-22 22:18:52 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://fbihtaapi.bettor.webhop.biz //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReportBetPayouts.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class Reference implements IConvertible { String? id; String? value; Reference({this.id,this.value}); Reference.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; value = json['value']; return this; } Map toJson() => { 'id': id, 'value': value }; getTypeName() => "Reference"; TypeContext? context = _ctx; } class ProductCategory { static const ProductCategory Sportsbook = const ProductCategory._(0); static const ProductCategory RNG = const ProductCategory._(1); final int _value; const ProductCategory._(this._value); int get value => _value; static List get values => const [Sportsbook,RNG]; } class ProductReference implements IConvertible { String? id; String? value; ProductCategory? category; Reference? productProvider; ProductReference({this.id,this.value,this.category,this.productProvider}); ProductReference.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; value = json['value']; category = JsonConverters.fromJson(json['category'],'ProductCategory',context!); productProvider = JsonConverters.fromJson(json['productProvider'],'Reference',context!); return this; } Map toJson() => { 'id': id, 'value': value, 'category': JsonConverters.toJson(category,'ProductCategory',context!), 'productProvider': JsonConverters.toJson(productProvider,'Reference',context!) }; getTypeName() => "ProductReference"; TypeContext? context = _ctx; } class ProductInstanceRef implements IConvertible { String? id; String? name; ProductReference? product; ProductInstanceRef({this.id,this.name,this.product}); ProductInstanceRef.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; name = json['name']; product = JsonConverters.fromJson(json['product'],'ProductReference',context!); return this; } Map toJson() => { 'id': id, 'name': name, 'product': JsonConverters.toJson(product,'ProductReference',context!) }; getTypeName() => "ProductInstanceRef"; TypeContext? context = _ctx; } class Origin implements IConvertible { Reference? device; Reference? location; Reference? locationGroup; Reference? organization; ProductInstanceRef? productInstance; Origin({this.device,this.location,this.locationGroup,this.organization,this.productInstance}); Origin.fromJson(Map json) { fromMap(json); } fromMap(Map json) { device = JsonConverters.fromJson(json['device'],'Reference',context!); location = JsonConverters.fromJson(json['location'],'Reference',context!); locationGroup = JsonConverters.fromJson(json['locationGroup'],'Reference',context!); organization = JsonConverters.fromJson(json['organization'],'Reference',context!); productInstance = JsonConverters.fromJson(json['productInstance'],'ProductInstanceRef',context!); return this; } Map toJson() => { 'device': JsonConverters.toJson(device,'Reference',context!), 'location': JsonConverters.toJson(location,'Reference',context!), 'locationGroup': JsonConverters.toJson(locationGroup,'Reference',context!), 'organization': JsonConverters.toJson(organization,'Reference',context!), 'productInstance': JsonConverters.toJson(productInstance,'ProductInstanceRef',context!) }; getTypeName() => "Origin"; TypeContext? context = _ctx; } class PaymentOrigin { static const PaymentOrigin POS = const PaymentOrigin._(0); static const PaymentOrigin SMS = const PaymentOrigin._(1); static const PaymentOrigin Internet = const PaymentOrigin._(2); final int _value; const PaymentOrigin._(this._value); int get value => _value; static List get values => const [POS,SMS,Internet]; } class PayoutRecap implements IConvertible { double? winnings; double? taxAmount; double? payout; PayoutRecap({this.winnings,this.taxAmount,this.payout}); PayoutRecap.fromJson(Map json) { fromMap(json); } fromMap(Map json) { winnings = JsonConverters.toDouble(json['winnings']); taxAmount = JsonConverters.toDouble(json['taxAmount']); payout = JsonConverters.toDouble(json['payout']); return this; } Map toJson() => { 'winnings': winnings, 'taxAmount': taxAmount, 'payout': payout }; getTypeName() => "PayoutRecap"; TypeContext? context = _ctx; } class BetPayout implements IConvertible { String? id; Origin? origin; DateTime? betPaidOutAt; Map? payload; PaymentOrigin? paymentOrigin; PayoutRecap? payoutRecap; BetPayout({this.id,this.origin,this.betPaidOutAt,this.payload,this.paymentOrigin,this.payoutRecap}); BetPayout.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; origin = JsonConverters.fromJson(json['origin'],'Origin',context!); betPaidOutAt = JsonConverters.fromJson(json['betPaidOutAt'],'DateTime',context!); payload = JsonConverters.toStringMap(json['payload']); paymentOrigin = JsonConverters.fromJson(json['paymentOrigin'],'PaymentOrigin',context!); payoutRecap = JsonConverters.fromJson(json['payoutRecap'],'PayoutRecap',context!); return this; } Map toJson() => { 'id': id, 'origin': JsonConverters.toJson(origin,'Origin',context!), 'betPaidOutAt': JsonConverters.toJson(betPaidOutAt,'DateTime',context!), 'payload': payload, 'paymentOrigin': JsonConverters.toJson(paymentOrigin,'PaymentOrigin',context!), 'payoutRecap': JsonConverters.toJson(payoutRecap,'PayoutRecap',context!) }; getTypeName() => "BetPayout"; TypeContext? context = _ctx; } class Reference implements IConvertible { String? id; String? value; Reference({this.id,this.value}); Reference.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; value = json['value']; return this; } Map toJson() => { 'id': id, 'value': value }; getTypeName() => "Reference"; TypeContext? context = _ctx; } class ProductCategory { static const ProductCategory Sportsbook = const ProductCategory._(0); static const ProductCategory RNG = const ProductCategory._(1); final int _value; const ProductCategory._(this._value); int get value => _value; static List get values => const [Sportsbook,RNG]; } // @Route("/bets/payout", "POST") class ReportBetPayouts implements IReturn, IConvertible, IPost { List? betPayouts; ReportBetPayouts({this.betPayouts}); ReportBetPayouts.fromJson(Map json) { fromMap(json); } fromMap(Map json) { betPayouts = JsonConverters.fromJson(json['betPayouts'],'List',context!); return this; } Map toJson() => { 'betPayouts': JsonConverters.toJson(betPayouts,'List',context!) }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "ReportBetPayouts"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'fbihtaapi.bettor.webhop.biz', types: { 'Reference': TypeInfo(TypeOf.Class, create:() => Reference()), 'ProductCategory': TypeInfo(TypeOf.Enum, enumValues:ProductCategory.values), 'ProductReference': TypeInfo(TypeOf.Class, create:() => ProductReference()), 'ProductInstanceRef': TypeInfo(TypeOf.Class, create:() => ProductInstanceRef()), 'Origin': TypeInfo(TypeOf.Class, create:() => Origin()), 'PaymentOrigin': TypeInfo(TypeOf.Enum, enumValues:PaymentOrigin.values), 'PayoutRecap': TypeInfo(TypeOf.Class, create:() => PayoutRecap()), 'BetPayout': TypeInfo(TypeOf.Class, create:() => BetPayout()), 'ReportBetPayouts': TypeInfo(TypeOf.Class, create:() => ReportBetPayouts()), 'List': TypeInfo(TypeOf.Class, create:() => []), });