GoogleCloudAiplatformV1DeleteFeatureValuesRequest.fromJson constructor

GoogleCloudAiplatformV1DeleteFeatureValuesRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1DeleteFeatureValuesRequest.fromJson(core.Map json_)
  : this(
      selectEntity:
          json_.containsKey('selectEntity')
              ? GoogleCloudAiplatformV1DeleteFeatureValuesRequestSelectEntity.fromJson(
                json_['selectEntity'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      selectTimeRangeAndFeature:
          json_.containsKey('selectTimeRangeAndFeature')
              ? GoogleCloudAiplatformV1DeleteFeatureValuesRequestSelectTimeRangeAndFeature.fromJson(
                json_['selectTimeRangeAndFeature']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );