/* Options: Date: 2025-11-08 11:06:30 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProductInstance.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ProductInstance implements IConvertible { String? id; String? name; String? title; ProductInstance({this.id,this.name,this.title}); ProductInstance.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; name = json['name']; title = json['title']; return this; } Map toJson() => { 'id': id, 'name': name, 'title': title }; getTypeName() => "ProductInstance"; TypeContext? context = _ctx; } // @Route("/qry/product-instance") class GetProductInstance implements IReturn, IConvertible, IPost { GetProductInstance(); GetProductInstance.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => ProductInstance(); getResponseTypeName() => "ProductInstance"; getTypeName() => "GetProductInstance"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 's4w2.api.bettor.cc', types: { 'ProductInstance': TypeInfo(TypeOf.Class, create:() => ProductInstance()), 'GetProductInstance': TypeInfo(TypeOf.Class, create:() => GetProductInstance()), });