GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope.fromJson constructor

GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1MetadataJobExportJobSpecExportJobScope.fromJson(
  core.Map json_,
) : this(
      aspectTypes:
          (json_['aspectTypes'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      entryGroups:
          (json_['entryGroups'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      entryTypes:
          (json_['entryTypes'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      organizationLevel: json_['organizationLevel'] as core.bool?,
      projects:
          (json_['projects'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );