toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final nextPageToken = this.nextPageToken;
final partialErrors = this.partialErrors;
final timeSeriesData = this.timeSeriesData;
final timeSeriesDescriptor = this.timeSeriesDescriptor;
return {
'nextPageToken': ?nextPageToken,
'partialErrors': ?partialErrors,
'timeSeriesData': ?timeSeriesData,
'timeSeriesDescriptor': ?timeSeriesDescriptor,
};
}