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