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