GoogleCloudDataplexV1MetadataFeedScope.fromJson constructor

GoogleCloudDataplexV1MetadataFeedScope.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1MetadataFeedScope.fromJson(core.Map json_)
  : this(
      entryGroups: (json_['entryGroups'] 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(),
    );