GoogleCloudDocumentaiV1beta3BatchDocumentsInputConfig.fromJson constructor

GoogleCloudDocumentaiV1beta3BatchDocumentsInputConfig.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDocumentaiV1beta3BatchDocumentsInputConfig.fromJson(core.Map _json)
    : this(
        gcsDocuments: _json.containsKey('gcsDocuments')
            ? GoogleCloudDocumentaiV1beta3GcsDocuments.fromJson(
                _json['gcsDocuments'] as core.Map<core.String, core.dynamic>)
            : null,
        gcsPrefix: _json.containsKey('gcsPrefix')
            ? GoogleCloudDocumentaiV1beta3GcsPrefix.fromJson(
                _json['gcsPrefix'] as core.Map<core.String, core.dynamic>)
            : null,
      );