GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource.fromJson constructor

GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource.fromJson(
    core.Map json_)
    : this(
        featureGroups: json_.containsKey('featureGroups')
            ? (json_['featureGroups'] as core.List)
                .map((value) =>
                    GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        projectNumber: json_.containsKey('projectNumber')
            ? json_['projectNumber'] as core.String
            : null,
      );