second commit

This commit is contained in:
Anbarasu
2026-05-27 10:35:09 +05:30
parent c53794c04c
commit 1435ac47b0
501 changed files with 52818 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
class CancelOrderRequest {
int? orderheaderid;
String? orderstatus;
String? cancelled;
CancelOrderRequest({this.orderheaderid, this.orderstatus, this.cancelled});
CancelOrderRequest.fromJson(Map<String, dynamic> json) {
orderheaderid = json['orderheaderid'];
orderstatus = json['orderstatus'];
cancelled = json['cancelled'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['orderheaderid'] = this.orderheaderid;
data['orderstatus'] = this.orderstatus;
data['cancelled'] = this.cancelled;
return data;
}
}