GoogleCloudContactcenterinsightsV1IssueModelResult.fromJson constructor

GoogleCloudContactcenterinsightsV1IssueModelResult.fromJson(
  1. Map json_
)

Implementation

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