toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataverseSourceConfig = this.dataverseSourceConfig;
  final mongodbSourceConfig = this.mongodbSourceConfig;
  final mysqlSourceConfig = this.mysqlSourceConfig;
  final oracleSourceConfig = this.oracleSourceConfig;
  final postgresqlSourceConfig = this.postgresqlSourceConfig;
  final salesforceMarketingCloudSourceConfig =
      this.salesforceMarketingCloudSourceConfig;
  final salesforceSourceConfig = this.salesforceSourceConfig;
  final serviceNowSourceConfig = this.serviceNowSourceConfig;
  final sourceConnectionProfile = this.sourceConnectionProfile;
  final spannerSourceConfig = this.spannerSourceConfig;
  final sqlServerSourceConfig = this.sqlServerSourceConfig;
  final workdaySourceConfig = this.workdaySourceConfig;
  return {
    'dataverseSourceConfig': ?dataverseSourceConfig,
    'mongodbSourceConfig': ?mongodbSourceConfig,
    'mysqlSourceConfig': ?mysqlSourceConfig,
    'oracleSourceConfig': ?oracleSourceConfig,
    'postgresqlSourceConfig': ?postgresqlSourceConfig,
    'salesforceMarketingCloudSourceConfig':
        ?salesforceMarketingCloudSourceConfig,
    'salesforceSourceConfig': ?salesforceSourceConfig,
    'serviceNowSourceConfig': ?serviceNowSourceConfig,
    'sourceConnectionProfile': ?sourceConnectionProfile,
    'spannerSourceConfig': ?spannerSourceConfig,
    'sqlServerSourceConfig': ?sqlServerSourceConfig,
    'workdaySourceConfig': ?workdaySourceConfig,
  };
}