toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final goldengateDeploymentId = this.goldengateDeploymentId;
final host = this.host;
final password = this.password;
final passwordSecretVersion = this.passwordSecretVersion;
final port = this.port;
final technologyType = this.technologyType;
final username = this.username;
return {
'goldengateDeploymentId': ?goldengateDeploymentId,
'host': ?host,
'password': ?password,
'passwordSecretVersion': ?passwordSecretVersion,
'port': ?port,
'technologyType': ?technologyType,
'username': ?username,
};
}