GoogleCloudContentwarehouseV1Rule.fromJson constructor
GoogleCloudContentwarehouseV1Rule.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1Rule.fromJson(core.Map json_)
: this(
actions: (json_['actions'] as core.List?)
?.map((value) => GoogleCloudContentwarehouseV1Action.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
condition: json_['condition'] as core.String?,
description: json_['description'] as core.String?,
ruleId: json_['ruleId'] as core.String?,
triggerType: json_['triggerType'] as core.String?,
);