GoogleCloudRetailV2ReplaceCatalogAttributeRequest.fromJson constructor
GoogleCloudRetailV2ReplaceCatalogAttributeRequest.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2ReplaceCatalogAttributeRequest.fromJson(core.Map json_)
: this(
catalogAttribute: json_.containsKey('catalogAttribute')
? GoogleCloudRetailV2CatalogAttribute.fromJson(
json_['catalogAttribute']
as core.Map<core.String, core.dynamic>)
: null,
updateMask: json_.containsKey('updateMask')
? json_['updateMask'] as core.String
: null,
);