GoogleCloudContentwarehouseV1RuleActionsPair.fromJson constructor
GoogleCloudContentwarehouseV1RuleActionsPair.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1RuleActionsPair.fromJson(core.Map json_)
: this(
actionOutputs:
(json_['actionOutputs'] as core.List?)
?.map(
(value) => GoogleCloudContentwarehouseV1ActionOutput.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
rule:
json_.containsKey('rule')
? GoogleCloudContentwarehouseV1Rule.fromJson(
json_['rule'] as core.Map<core.String, core.dynamic>,
)
: null,
);