GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson constructor
GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListSecurityActionsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
securityActions: json_.containsKey('securityActions')
? (json_['securityActions'] as core.List)
.map((value) => GoogleCloudApigeeV1SecurityAction.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);