toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (createTime != null) 'createTime': createTime!,
      if (endTime != null) 'endTime': endTime!,
      if (events != null) 'events': events!,
      if (labels != null) 'labels': labels!,
      if (pipeline != null) 'pipeline': pipeline!,
      if (pubSubTopic != null) 'pubSubTopic': pubSubTopic!,
      if (startTime != null) 'startTime': startTime!,
    };