GoogleCloudApigeeV1ListSecurityIncidentsResponse.fromJson constructor
GoogleCloudApigeeV1ListSecurityIncidentsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListSecurityIncidentsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
securityIncidents: (json_['securityIncidents'] as core.List?)
?.map((value) => GoogleCloudApigeeV1SecurityIncident.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);