GoogleCloudAiplatformV1FeatureViewDataKey.fromJson constructor

GoogleCloudAiplatformV1FeatureViewDataKey.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FeatureViewDataKey.fromJson(core.Map json_)
    : this(
        compositeKey: json_.containsKey('compositeKey')
            ? GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey.fromJson(
                json_['compositeKey'] as core.Map<core.String, core.dynamic>)
            : null,
        key: json_.containsKey('key') ? json_['key'] as core.String : null,
      );