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