toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final additionalVariables = this.additionalVariables;
final authConfig = this.authConfig;
final deadLetterConfig = this.deadLetterConfig;
final enrichmentConfig = this.enrichmentConfig;
final enrichmentEnabled = this.enrichmentEnabled;
final eventsListenerIngressEndpoint = this.eventsListenerIngressEndpoint;
final listenerAuthConfig = this.listenerAuthConfig;
final privateConnectivityAllowlistedProjects =
this.privateConnectivityAllowlistedProjects;
final privateConnectivityEnabled = this.privateConnectivityEnabled;
final proxyDestinationConfig = this.proxyDestinationConfig;
final registrationDestinationConfig = this.registrationDestinationConfig;
final sslConfig = this.sslConfig;
return {
'additionalVariables': ?additionalVariables,
'authConfig': ?authConfig,
'deadLetterConfig': ?deadLetterConfig,
'enrichmentConfig': ?enrichmentConfig,
'enrichmentEnabled': ?enrichmentEnabled,
'eventsListenerIngressEndpoint': ?eventsListenerIngressEndpoint,
'listenerAuthConfig': ?listenerAuthConfig,
'privateConnectivityAllowlistedProjects':
?privateConnectivityAllowlistedProjects,
'privateConnectivityEnabled': ?privateConnectivityEnabled,
'proxyDestinationConfig': ?proxyDestinationConfig,
'registrationDestinationConfig': ?registrationDestinationConfig,
'sslConfig': ?sslConfig,
};
}