toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final cloudStorageDownloadDetails = this.cloudStorageDownloadDetails;
final created = this.created;
final dimensions = this.dimensions;
final downloadType = this.downloadType;
final driveDownloadDetails = this.driveDownloadDetails;
final endDate = this.endDate;
final filters = this.filters;
final id = this.id;
final kind = this.kind;
final metrics = this.metrics;
final profileId = this.profileId;
final segment = this.segment;
final selfLink = this.selfLink;
final startDate = this.startDate;
final status = this.status;
final title = this.title;
final updated = this.updated;
final webPropertyId = this.webPropertyId;
return {
'accountId': ?accountId,
'cloudStorageDownloadDetails': ?cloudStorageDownloadDetails,
'created': ?created?.toUtc().toIso8601String(),
'dimensions': ?dimensions,
'downloadType': ?downloadType,
'driveDownloadDetails': ?driveDownloadDetails,
'end-date': ?endDate,
'filters': ?filters,
'id': ?id,
'kind': ?kind,
'metrics': ?metrics,
'profileId': ?profileId,
'segment': ?segment,
'selfLink': ?selfLink,
'start-date': ?startDate,
'status': ?status,
'title': ?title,
'updated': ?updated?.toUtc().toIso8601String(),
'webPropertyId': ?webPropertyId,
};
}