toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (archive != null) 'archive': archive!,
  if (basepaths != null) 'basepaths': basepaths!,
  if (configurationVersion != null)
    'configurationVersion': configurationVersion!,
  if (contextInfo != null) 'contextInfo': contextInfo!,
  if (createdAt != null) 'createdAt': createdAt!,
  if (description != null) 'description': description!,
  if (displayName != null) 'displayName': displayName!,
  if (entityMetaDataAsProperties != null)
    'entityMetaDataAsProperties': entityMetaDataAsProperties!,
  if (hasExtensiblePolicy != null)
    'hasExtensiblePolicy': hasExtensiblePolicy!,
  if (integrationEndpoints != null)
    'integrationEndpoints': integrationEndpoints!,
  if (lastModifiedAt != null) 'lastModifiedAt': lastModifiedAt!,
  if (name != null) 'name': name!,
  if (policies != null) 'policies': policies!,
  if (proxies != null) 'proxies': proxies!,
  if (proxyEndpoints != null) 'proxyEndpoints': proxyEndpoints!,
  if (resourceFiles != null) 'resourceFiles': resourceFiles!,
  if (resources != null) 'resources': resources!,
  if (revision != null) 'revision': revision!,
  if (sharedFlows != null) 'sharedFlows': sharedFlows!,
  if (spec != null) 'spec': spec!,
  if (targetEndpoints != null) 'targetEndpoints': targetEndpoints!,
  if (targetServers != null) 'targetServers': targetServers!,
  if (targets != null) 'targets': targets!,
  if (teams != null) 'teams': teams!,
  if (type != null) 'type': type!,
};