GoogleCloudRetailV2AttributesConfig.fromJson constructor
GoogleCloudRetailV2AttributesConfig.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2AttributesConfig.fromJson(core.Map json_)
: this(
attributeConfigLevel: json_['attributeConfigLevel'] as core.String?,
catalogAttributes: (json_['catalogAttributes']
as core.Map<core.String, core.dynamic>?)
?.map(
(key, value) => core.MapEntry(
key,
GoogleCloudRetailV2CatalogAttribute.fromJson(
value as core.Map<core.String, core.dynamic>),
),
),
name: json_['name'] as core.String?,
);