class MohemmITGPendingTaskResponseItem { int? escalation; int? exceedTAT; int? extendTATRequest; int? open; int? pendningWithReviewer; int? waitingForAcceptance; int? waitingToClose; int? withInTAT; MohemmITGPendingTaskResponseItem( {this.escalation, this.exceedTAT, this.extendTATRequest, this.open, this.pendningWithReviewer, this.waitingForAcceptance, this.waitingToClose, this.withInTAT}); MohemmITGPendingTaskResponseItem.fromJson(Map json) { escalation = json['escalation']; exceedTAT = json['exceedTAT']; extendTATRequest = json['extendTATRequest']; open = json['open']; pendningWithReviewer = json['pendningWithReviewer']; waitingForAcceptance = json['waitingForAcceptance']; waitingToClose = json['waitingToClose']; withInTAT = json['withInTAT']; } Map toJson() { Map data = new Map(); data['escalation'] = this.escalation; data['exceedTAT'] = this.exceedTAT; data['extendTATRequest'] = this.extendTATRequest; data['open'] = this.open; data['pendningWithReviewer'] = this.pendningWithReviewer; data['waitingForAcceptance'] = this.waitingForAcceptance; data['waitingToClose'] = this.waitingToClose; data['withInTAT'] = this.withInTAT; return data; } }