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