GoogleChromeManagementV1TelemetryNotificationConfig.fromJson constructor

GoogleChromeManagementV1TelemetryNotificationConfig.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TelemetryNotificationConfig.fromJson(core.Map json_)
    : this(
        customer: json_['customer'] as core.String?,
        filter: json_.containsKey('filter')
            ? GoogleChromeManagementV1TelemetryNotificationFilter.fromJson(
                json_['filter'] as core.Map<core.String, core.dynamic>)
            : null,
        googleCloudPubsubTopic:
            json_['googleCloudPubsubTopic'] as core.String?,
        name: json_['name'] as core.String?,
      );