You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hmg-mohemm-flutter-app/lib/models/mowadhafhi/get_ticket_transactions.dart

41 lines
1.2 KiB
Dart

class GetTicketTransactions {
String? actionBy;
String? actionDate;
String? comments;
String? statusDisplayText;
String? statusName;
String? ticketId;
int? ticketTransactionId;
GetTicketTransactions(
{this.actionBy,
this.actionDate,
this.comments,
this.statusDisplayText,
this.statusName,
this.ticketId,
this.ticketTransactionId});
GetTicketTransactions.fromJson(Map<String, dynamic> json) {
actionBy = json['actionBy'];
actionDate = json['actionDate'];
comments = json['comments'];
statusDisplayText = json['statusDisplayText'];
statusName = json['statusName'];
ticketId = json['ticketId'];
ticketTransactionId = json['ticketTransactionId'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['actionBy'] = this.actionBy;
data['actionDate'] = this.actionDate;
data['comments'] = this.comments;
data['statusDisplayText'] = this.statusDisplayText;
data['statusName'] = this.statusName;
data['ticketId'] = this.ticketId;
data['ticketTransactionId'] = this.ticketTransactionId;
return data;
}
}