/* Options: Date: 2024-07-04 03:17:12 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cip-reporting-dev.chargeitpro.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProductsByComputerRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Computers/Products/{LocationName}") class ProductsByComputerRequest implements IConvertible { String? LocationName; ProductsByComputerRequest({this.LocationName}); ProductsByComputerRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LocationName = json['LocationName']; return this; } Map toJson() => { 'LocationName': LocationName }; getTypeName() => "ProductsByComputerRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'cip_reporting_dev.chargeitpro.com', types: { 'ProductsByComputerRequest': TypeInfo(TypeOf.Class, create:() => ProductsByComputerRequest()), });