toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authenticationConfig = this.authenticationConfig;
  final httpEndpoint = this.httpEndpoint;
  final messageBus = this.messageBus;
  final networkConfig = this.networkConfig;
  final outputPayloadFormat = this.outputPayloadFormat;
  final topic = this.topic;
  final workflow = this.workflow;
  return {
    'authenticationConfig': ?authenticationConfig,
    'httpEndpoint': ?httpEndpoint,
    'messageBus': ?messageBus,
    'networkConfig': ?networkConfig,
    'outputPayloadFormat': ?outputPayloadFormat,
    'topic': ?topic,
    'workflow': ?workflow,
  };
}