GoogleChromeManagementV1TelemetryNotificationFilter.fromJson constructor

GoogleChromeManagementV1TelemetryNotificationFilter.fromJson(
  1. Map json_
)

Implementation

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