GoogleChromeManagementV1TelemetryNotificationFilter.fromJson constructor
GoogleChromeManagementV1TelemetryNotificationFilter.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1TelemetryNotificationFilter.fromJson(core.Map json_)
: this(
deviceId: json_['deviceId'] as core.String?,
deviceOrgUnitId: json_['deviceOrgUnitId'] as core.String?,
telemetryEventNotificationFilter:
json_.containsKey('telemetryEventNotificationFilter')
? GoogleChromeManagementV1TelemetryEventNotificationFilter
.fromJson(json_['telemetryEventNotificationFilter']
as core.Map<core.String, core.dynamic>)
: null,
userEmail: json_['userEmail'] as core.String?,
userOrgUnitId: json_['userOrgUnitId'] as core.String?,
);