GoogleCloudContactcenterinsightsV1Issue.fromJson constructor
GoogleCloudContactcenterinsightsV1Issue.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1Issue.fromJson(core.Map json_)
: this(
createTime: json_.containsKey('createTime')
? json_['createTime'] as core.String
: null,
displayName: json_.containsKey('displayName')
? json_['displayName'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
sampleUtterances: json_.containsKey('sampleUtterances')
? (json_['sampleUtterances'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
updateTime: json_.containsKey('updateTime')
? json_['updateTime'] as core.String
: null,
);