toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (actions != null) 'actions': actions!,
  if (createTime != null) 'createTime': createTime!,
  if (displayName != null) 'displayName': displayName!,
  if (errors != null) 'errors': errors!,
  if (inspectTemplates != null) 'inspectTemplates': inspectTemplates!,
  if (lastRunTime != null) 'lastRunTime': lastRunTime!,
  if (name != null) 'name': name!,
  if (orgConfig != null) 'orgConfig': orgConfig!,
  if (otherCloudStartingLocation != null)
    'otherCloudStartingLocation': otherCloudStartingLocation!,
  if (processingLocation != null) 'processingLocation': processingLocation!,
  if (status != null) 'status': status!,
  if (targets != null) 'targets': targets!,
  if (updateTime != null) 'updateTime': updateTime!,
};