toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final googleCloudStoragePath = this.googleCloudStoragePath;
final reportDataEndDate = this.reportDataEndDate;
final reportDataStartDate = this.reportDataStartDate;
final status = this.status;
return {
'googleCloudStoragePath': ?googleCloudStoragePath,
'reportDataEndDate': ?reportDataEndDate,
'reportDataStartDate': ?reportDataStartDate,
'status': ?status,
};
}