toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final failedObjectCount = this.failedObjectCount;
final objectCustomContextsCreated = this.objectCustomContextsCreated;
final objectCustomContextsDeleted = this.objectCustomContextsDeleted;
final objectCustomContextsUpdated = this.objectCustomContextsUpdated;
final succeededObjectCount = this.succeededObjectCount;
final totalBytesFound = this.totalBytesFound;
final totalBytesTransformed = this.totalBytesTransformed;
final totalObjectCount = this.totalObjectCount;
return {
'failedObjectCount': ?failedObjectCount,
'objectCustomContextsCreated': ?objectCustomContextsCreated,
'objectCustomContextsDeleted': ?objectCustomContextsDeleted,
'objectCustomContextsUpdated': ?objectCustomContextsUpdated,
'succeededObjectCount': ?succeededObjectCount,
'totalBytesFound': ?totalBytesFound,
'totalBytesTransformed': ?totalBytesTransformed,
'totalObjectCount': ?totalObjectCount,
};
}