class DemoAttachments { int? id; num? demoRequestId; num? attachmentTypeId; String? attachmentName; String? originalName; DemoAttachments({this.id, this.attachmentTypeId, this.attachmentName, this.demoRequestId, this.originalName}); DemoAttachments.fromJson(dynamic json) { id = json['id']; attachmentTypeId = json['attachmentTypeId']; demoRequestId = json['demoRequestId']; attachmentName = json['attachmentName']; originalName = json['originalName']; } Map toJson() { final map = {}; map['id'] = id; map['attachmentTypeId'] = attachmentTypeId; map['attachmentName'] = attachmentName; map['demoRequestId'] = demoRequestId; map['originalName'] = originalName; return map; } }