GoogleCloudContentwarehouseV1ExportToCdwPipeline.fromJson constructor

GoogleCloudContentwarehouseV1ExportToCdwPipeline.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1ExportToCdwPipeline.fromJson(core.Map json_)
  : this(
      docAiDataset: json_['docAiDataset'] as core.String?,
      documents: (json_['documents'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      exportFolderPath: json_['exportFolderPath'] as core.String?,
      trainingSplitRatio: (json_['trainingSplitRatio'] as core.num?)
          ?.toDouble(),
    );