toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (applicationProperties != null)
    'applicationProperties': applicationProperties!,
  if (databaseProperties != null) 'databaseProperties': databaseProperties!,
  if (haHosts != null) 'haHosts': haHosts!,
  if (hostProject != null) 'hostProject': hostProject!,
  if (region != null) 'region': region!,
  if (replicationSites != null) 'replicationSites': replicationSites!,
  if (resources != null) 'resources': resources!,
  if (sid != null) 'sid': sid!,
  if (topologyType != null) 'topologyType': topologyType!,
};