com.aliyun.dingtalkservice_group_1_0.models.ConversationTransferCompleteNotifyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class ConversationTransferCompleteNotifyRequest extends TeaModel {
@NameInMap("alipayUserId")
public String alipayUserId;
@NameInMap("conversationId")
public String conversationId;
@NameInMap("nickName")
public String nickName;
@NameInMap("openTeamId")
public String openTeamId;
@NameInMap("serviceToken")
public String serviceToken;
@NameInMap("userId")
public String userId;
@NameInMap("visitorToken")
public String visitorToken;
public static ConversationTransferCompleteNotifyRequest build(java.util.Map map) throws Exception {
ConversationTransferCompleteNotifyRequest self = new ConversationTransferCompleteNotifyRequest();
return TeaModel.build(map, self);
}
public ConversationTransferCompleteNotifyRequest setAlipayUserId(String alipayUserId) {
this.alipayUserId = alipayUserId;
return this;
}
public String getAlipayUserId() {
return this.alipayUserId;
}
public ConversationTransferCompleteNotifyRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public ConversationTransferCompleteNotifyRequest setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public ConversationTransferCompleteNotifyRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public ConversationTransferCompleteNotifyRequest setServiceToken(String serviceToken) {
this.serviceToken = serviceToken;
return this;
}
public String getServiceToken() {
return this.serviceToken;
}
public ConversationTransferCompleteNotifyRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public ConversationTransferCompleteNotifyRequest setVisitorToken(String visitorToken) {
this.visitorToken = visitorToken;
return this;
}
public String getVisitorToken() {
return this.visitorToken;
}
}