GoogleCloudRetailV2ModelModelFeaturesConfig.fromJson constructor

GoogleCloudRetailV2ModelModelFeaturesConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2ModelModelFeaturesConfig.fromJson(core.Map json_)
  : this(
      frequentlyBoughtTogetherConfig:
          json_.containsKey('frequentlyBoughtTogetherConfig')
              ? GoogleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfig.fromJson(
                json_['frequentlyBoughtTogetherConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );