GoogleCloudApigeeV1UpdateSecurityIncidentRequest.fromJson constructor

GoogleCloudApigeeV1UpdateSecurityIncidentRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1UpdateSecurityIncidentRequest.fromJson(core.Map json_)
  : this(
      securityIncident:
          json_.containsKey('securityIncident')
              ? GoogleCloudApigeeV1SecurityIncident.fromJson(
                json_['securityIncident']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      updateMask: json_['updateMask'] as core.String?,
    );