![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkats_1_0.models.AddUserAccountRequest 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.dingtalkats_1_0.models;
import com.aliyun.tea.*;
public class AddUserAccountRequest extends TeaModel {
/**
* example:
* ddats
*/
@NameInMap("bizCode")
public String bizCode;
/**
* example:
* 示例昵称xxx
*/
@NameInMap("channelAccountName")
public String channelAccountName;
/**
* example:
* 6FSe51616SOdd394d6
*/
@NameInMap("channelUserIdentify")
public String channelUserIdentify;
/**
* example:
* 16600010001
*/
@NameInMap("phoneNumber")
public String phoneNumber;
/**
* example:
* ding123456789
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 1676451039
*/
@NameInMap("userId")
public String userId;
public static AddUserAccountRequest build(java.util.Map map) throws Exception {
AddUserAccountRequest self = new AddUserAccountRequest();
return TeaModel.build(map, self);
}
public AddUserAccountRequest setBizCode(String bizCode) {
this.bizCode = bizCode;
return this;
}
public String getBizCode() {
return this.bizCode;
}
public AddUserAccountRequest setChannelAccountName(String channelAccountName) {
this.channelAccountName = channelAccountName;
return this;
}
public String getChannelAccountName() {
return this.channelAccountName;
}
public AddUserAccountRequest setChannelUserIdentify(String channelUserIdentify) {
this.channelUserIdentify = channelUserIdentify;
return this;
}
public String getChannelUserIdentify() {
return this.channelUserIdentify;
}
public AddUserAccountRequest setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneNumber() {
return this.phoneNumber;
}
public AddUserAccountRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public AddUserAccountRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy