You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
613 B
21 lines
613 B
class SubmitOrderData {
|
|
String? orderId;
|
|
String? paymentOrderId;
|
|
bool? freeSettlement;
|
|
|
|
SubmitOrderData({this.orderId, this.paymentOrderId, this.freeSettlement});
|
|
|
|
SubmitOrderData.fromJson(Map<String, dynamic> json) {
|
|
orderId = json['orderId'];
|
|
paymentOrderId = json['paymentOrderId'];
|
|
freeSettlement = json['freeSettlement'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['orderId'] = this.orderId;
|
|
data['paymentOrderId'] = this.paymentOrderId;
|
|
data['freeSettlement'] = this.freeSettlement;
|
|
return data;
|
|
}
|
|
}
|