toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final inputPath = this.inputPath;
final pipelineConfig = this.pipelineConfig;
final processorType = this.processorType;
final schemaName = this.schemaName;
final skipIngestedDocuments = this.skipIngestedDocuments;
return {
'inputPath': ?inputPath,
'pipelineConfig': ?pipelineConfig,
'processorType': ?processorType,
'schemaName': ?schemaName,
'skipIngestedDocuments': ?skipIngestedDocuments,
};
}