GoogleCloudApigeeV1BatchUpdateSecurityIncidentsResponse.fromJson constructor

GoogleCloudApigeeV1BatchUpdateSecurityIncidentsResponse.fromJson(
  1. Map json_
)

Implementation

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