/* Options: Date: 2026-04-17 10:43:20 Version: 10.02 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, IGet { 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()), });