toJson method
Implementation
Map<String, Object?> toJson() {
var contentId = this.contentId;
var failureReason = this.failureReason;
final json = <String, Object?>{};
json[r'contentId'] = contentId;
json[r'failureReason'] = failureReason;
return json;
}