GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest.fromJson constructor

GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest.fromJson(
  core.Map json_,
) : this(
      autoLabelingRule: json_.containsKey('autoLabelingRule')
          ? GoogleCloudContactcenterinsightsV1AutoLabelingRule.fromJson(
              json_['autoLabelingRule']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      conversation: json_.containsKey('conversation')
          ? GoogleCloudContactcenterinsightsV1Conversation.fromJson(
              json_['conversation'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );