GoogleCloudContactcenterinsightsV1FeedbackLabel.fromJson constructor

GoogleCloudContactcenterinsightsV1FeedbackLabel.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1FeedbackLabel.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      label: json_['label'] as core.String?,
      labeledResource: json_['labeledResource'] as core.String?,
      name: json_['name'] as core.String?,
      qaAnswerLabel: json_.containsKey('qaAnswerLabel')
          ? GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue.fromJson(
              json_['qaAnswerLabel'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      updateTime: json_['updateTime'] as core.String?,
    );