GoogleCloudContactcenterinsightsV1Chart.fromJson constructor
GoogleCloudContactcenterinsightsV1Chart.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1Chart.fromJson(core.Map json_)
: this(
chartType: json_['chartType'] as core.String?,
chartVisualizationType: json_['chartVisualizationType'] as core.String?,
createTime: json_['createTime'] as core.String?,
dataSource: json_.containsKey('dataSource')
? GoogleCloudContactcenterinsightsV1ChartDataSource.fromJson(
json_['dataSource'] as core.Map<core.String, core.dynamic>,
)
: null,
dateRangeConfig: json_.containsKey('dateRangeConfig')
? GoogleCloudContactcenterinsightsV1DateRangeConfig.fromJson(
json_['dateRangeConfig'] as core.Map<core.String, core.dynamic>,
)
: null,
description: json_['description'] as core.String?,
displayName: json_['displayName'] as core.String?,
filter: json_['filter'] as core.String?,
height: json_['height'] as core.int?,
name: json_['name'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
width: json_['width'] as core.int?,
);