com.aliyun.ccc20200701.models.AnalyzeConversationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccc20200701 Show documentation
Show all versions of ccc20200701 Show documentation
Alibaba Cloud cloud call center (20200701) SDK for Java
// 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;
}
}