GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline.fromJson constructor
GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline.fromJson(core.Map json_)
: this(
documents: json_.containsKey('documents')
? (json_['documents'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
exportFolderPath: json_.containsKey('exportFolderPath')
? json_['exportFolderPath'] as core.String
: null,
processorInfo: json_.containsKey('processorInfo')
? GoogleCloudContentwarehouseV1ProcessorInfo.fromJson(
json_['processorInfo'] as core.Map<core.String, core.dynamic>)
: null,
processorResultsFolderPath:
json_.containsKey('processorResultsFolderPath')
? json_['processorResultsFolderPath'] as core.String
: null,
);