GoogleCloudContactcenterinsightsV1IssueModelResult.fromJson constructor
GoogleCloudContactcenterinsightsV1IssueModelResult.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1IssueModelResult.fromJson(core.Map json_)
: this(
issueModel: json_['issueModel'] as core.String?,
issues: (json_['issues'] as core.List?)
?.map(
(value) =>
GoogleCloudContactcenterinsightsV1IssueAssignment.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);