/* Options: Date: 2025-04-04 16:18:33 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: FindProduct.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ProductInstance implements IConvertible { int? ProductId; String? Group; String? Name; String? Description; double? Price; double? VAT; double? TotalPrice; int? ProductType; bool? Deleted; bool? Demo; int? UsageCount; int? StockLevel; int? ReorderFlag; bool? VisibleOnline; ProductInstance({this.ProductId,this.Group,this.Name,this.Description,this.Price,this.VAT,this.TotalPrice,this.ProductType,this.Deleted,this.Demo,this.UsageCount,this.StockLevel,this.ReorderFlag,this.VisibleOnline}); ProductInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ProductId = json['ProductId']; Group = json['Group']; Name = json['Name']; Description = json['Description']; Price = JsonConverters.toDouble(json['Price']); VAT = JsonConverters.toDouble(json['VAT']); TotalPrice = JsonConverters.toDouble(json['TotalPrice']); ProductType = json['ProductType']; Deleted = json['Deleted']; Demo = json['Demo']; UsageCount = json['UsageCount']; StockLevel = json['StockLevel']; ReorderFlag = json['ReorderFlag']; VisibleOnline = json['VisibleOnline']; return this; } Map toJson() => { 'ProductId': ProductId, 'Group': Group, 'Name': Name, 'Description': Description, 'Price': Price, 'VAT': VAT, 'TotalPrice': TotalPrice, 'ProductType': ProductType, 'Deleted': Deleted, 'Demo': Demo, 'UsageCount': UsageCount, 'StockLevel': StockLevel, 'ReorderFlag': ReorderFlag, 'VisibleOnline': VisibleOnline }; getTypeName() => "ProductInstance"; TypeContext? context = _ctx; } // @Route("/api/Query/Product") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="Product") class FindProduct extends QueryDb implements IReturn>, IConvertible { FindProduct(); FindProduct.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "FindProduct"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'ProductInstance': TypeInfo(TypeOf.Class, create:() => ProductInstance()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'FindProduct': TypeInfo(TypeOf.Class, create:() => FindProduct()), 'List': TypeInfo(TypeOf.Class, create:() => []), });