GoogleCloudRetailV2SetInventoryRequest.fromJson constructor
GoogleCloudRetailV2SetInventoryRequest.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2SetInventoryRequest.fromJson(core.Map json_)
: this(
allowMissing: json_['allowMissing'] as core.bool?,
inventory: json_.containsKey('inventory')
? GoogleCloudRetailV2Product.fromJson(
json_['inventory'] as core.Map<core.String, core.dynamic>)
: null,
setMask: json_['setMask'] as core.String?,
setTime: json_['setTime'] as core.String?,
);