All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ccc20200701.models.AnalyzeConversationRequest Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class AnalyzeConversationRequest extends TeaModel {
    /**
     * example:
     * 

job-10963442671187****

*/ @NameInMap("ContactId") public String contactId; @NameInMap("FieldListJson") public String fieldListJson; /** *

This parameter is required.

* * example: *

9cfad875-6260-4a53-ab6e-b13e3fb31f7d

*/ @NameInMap("InstanceId") public String instanceId; /** * example: *

["keywords"]

*/ @NameInMap("TaskListJson") public String taskListJson; public static AnalyzeConversationRequest build(java.util.Map map) throws Exception { AnalyzeConversationRequest self = new AnalyzeConversationRequest(); return TeaModel.build(map, self); } public AnalyzeConversationRequest setContactId(String contactId) { this.contactId = contactId; return this; } public String getContactId() { return this.contactId; } public AnalyzeConversationRequest setFieldListJson(String fieldListJson) { this.fieldListJson = fieldListJson; return this; } public String getFieldListJson() { return this.fieldListJson; } public AnalyzeConversationRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public AnalyzeConversationRequest setTaskListJson(String taskListJson) { this.taskListJson = taskListJson; return this; } public String getTaskListJson() { return this.taskListJson; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy