toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consumerId = this.consumerId;
  final endTime = this.endTime;
  final importance = this.importance;
  final labels = this.labels;
  final logEntries = this.logEntries;
  final metricValueSets = this.metricValueSets;
  final operationId = this.operationId;
  final operationName = this.operationName;
  final quotaProperties = this.quotaProperties;
  final resources = this.resources;
  final startTime = this.startTime;
  final traceSpans = this.traceSpans;
  final userLabels = this.userLabels;
  return {
    'consumerId': ?consumerId,
    'endTime': ?endTime,
    'importance': ?importance,
    'labels': ?labels,
    'logEntries': ?logEntries,
    'metricValueSets': ?metricValueSets,
    'operationId': ?operationId,
    'operationName': ?operationName,
    'quotaProperties': ?quotaProperties,
    'resources': ?resources,
    'startTime': ?startTime,
    'traceSpans': ?traceSpans,
    'userLabels': ?userLabels,
  };
}