GoogleCloudContactcenterinsightsV1IssueMatchData.fromJson constructor

GoogleCloudContactcenterinsightsV1IssueMatchData.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1IssueMatchData.fromJson(core.Map json_)
  : this(
      issueAssignment: json_.containsKey('issueAssignment')
          ? GoogleCloudContactcenterinsightsV1IssueAssignment.fromJson(
              json_['issueAssignment'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );