GoogleCloudApigeeV1UpdateSecurityIncidentRequest.fromJson constructor
GoogleCloudApigeeV1UpdateSecurityIncidentRequest.fromJson(
- 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_.containsKey('updateMask')
? json_['updateMask'] as core.String
: null,
);