GoogleCloudApigeeV1SecurityActionConditionConfig.fromJson constructor
GoogleCloudApigeeV1SecurityActionConditionConfig.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1SecurityActionConditionConfig.fromJson(core.Map json_)
: this(
botReasons: json_.containsKey('botReasons')
? (json_['botReasons'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
ipAddressRanges: json_.containsKey('ipAddressRanges')
? (json_['ipAddressRanges'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);