/* Options: Date: 2025-04-04 17:21:40 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindBookingCategory.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class BookingCategoryInstance implements IConvertible { int? BookingCategoryId; String? Name; String? Description; String? ParamTitle1; String? ParamValue1; String? ParamTitle2; String? ParamValue2; String? ParamTitle3; String? ParamValue3; int? Order; DateTime? Deleted; bool? VisibleOnline; BookingCategoryInstance({this.BookingCategoryId,this.Name,this.Description,this.ParamTitle1,this.ParamValue1,this.ParamTitle2,this.ParamValue2,this.ParamTitle3,this.ParamValue3,this.Order,this.Deleted,this.VisibleOnline}); BookingCategoryInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BookingCategoryId = json['BookingCategoryId']; Name = json['Name']; Description = json['Description']; ParamTitle1 = json['ParamTitle1']; ParamValue1 = json['ParamValue1']; ParamTitle2 = json['ParamTitle2']; ParamValue2 = json['ParamValue2']; ParamTitle3 = json['ParamTitle3']; ParamValue3 = json['ParamValue3']; Order = json['Order']; Deleted = JsonConverters.fromJson(json['Deleted'],'DateTime',context!); VisibleOnline = json['VisibleOnline']; return this; } Map toJson() => { 'BookingCategoryId': BookingCategoryId, 'Name': Name, 'Description': Description, 'ParamTitle1': ParamTitle1, 'ParamValue1': ParamValue1, 'ParamTitle2': ParamTitle2, 'ParamValue2': ParamValue2, 'ParamTitle3': ParamTitle3, 'ParamValue3': ParamValue3, 'Order': Order, 'Deleted': JsonConverters.toJson(Deleted,'DateTime',context!), 'VisibleOnline': VisibleOnline }; getTypeName() => "BookingCategoryInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/BookingCategory") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="BookingCategory") class FindBookingCategory extends QueryDb implements IReturn>, IConvertible { FindBookingCategory(); FindBookingCategory.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "FindBookingCategory"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'BookingCategoryInstance': TypeInfo(TypeOf.Class, create:() => BookingCategoryInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'FindBookingCategory': TypeInfo(TypeOf.Class, create:() => FindBookingCategory()), 'List': TypeInfo(TypeOf.Class, create:() => []), });