GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline.fromJson constructor

GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline.fromJson(
  1. Map json_
)

Implementation

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