| All Verbs | /Recon/MissingTransDetail/{LocationId}/{DeveloperId} | ||
|---|---|---|---|
| All Verbs | /Recon/MissingTransDetail/{LocationId} | ||
| All Verbs | /Recon/MissingTransDetail | ||
| All Verbs | /Recon/MissingTransDetail/{LocationId}/{DeveloperId}/{SerialNumber} |
import 'package:servicestack/servicestack.dart';
class MissingTransactionDetailRequest implements IConvertible
{
String? locationId;
String? developerId;
String? serialNumber;
MissingTransactionDetailRequest({this.locationId,this.developerId,this.serialNumber});
MissingTransactionDetailRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
locationId = json['locationId'];
developerId = json['developerId'];
serialNumber = json['serialNumber'];
return this;
}
Map<String, dynamic> toJson() => {
'locationId': locationId,
'developerId': developerId,
'serialNumber': serialNumber
};
getTypeName() => "MissingTransactionDetailRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'cip_reporting_dev.chargeitpro.com', types: <String, TypeInfo> {
'MissingTransactionDetailRequest': TypeInfo(TypeOf.Class, create:() => MissingTransactionDetailRequest()),
});
Dart MissingTransactionDetailRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Recon/MissingTransDetail/{LocationId}/{DeveloperId} HTTP/1.1
Host: cip-reporting-dev.chargeitpro.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
locationId: String,
developerId: String,
serialNumber: String
}