toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final applicationProperties = this.applicationProperties;
final databaseProperties = this.databaseProperties;
final haHosts = this.haHosts;
final hostProject = this.hostProject;
final region = this.region;
final replicationSites = this.replicationSites;
final resources = this.resources;
final sid = this.sid;
final topologyType = this.topologyType;
return {
'applicationProperties': ?applicationProperties,
'databaseProperties': ?databaseProperties,
'haHosts': ?haHosts,
'hostProject': ?hostProject,
'region': ?region,
'replicationSites': ?replicationSites,
'resources': ?resources,
'sid': ?sid,
'topologyType': ?topologyType,
};
}