GoogleCloudContentwarehouseV1RuleSet.fromJson constructor
GoogleCloudContentwarehouseV1RuleSet.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1RuleSet.fromJson(core.Map json_)
: this(
description: json_['description'] as core.String?,
name: json_['name'] as core.String?,
rules: (json_['rules'] as core.List?)
?.map((value) => GoogleCloudContentwarehouseV1Rule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
source: json_['source'] as core.String?,
);