toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (endTime != null) 'endTime': endTime!,
  if (filter != null) 'filter': filter!,
  if (gcsDestination != null) 'gcsDestination': gcsDestination!,
  if (pubsubDestination != null) 'pubsubDestination': pubsubDestination!,
  if (startTime != null) 'startTime': startTime!,
};