com.aliyun.dingtalklink_1_0.models.GetUserFollowStatusRequest 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.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class GetUserFollowStatusRequest extends TeaModel {
/**
* example:
* ding1234
*/
@NameInMap("accountId")
public String accountId;
/**
* example:
* UgIzXXo+Rp3Rqcts7BE08y49Jr6iu6xW4iQ
*/
@NameInMap("unionId")
public String unionId;
/**
* example:
* Rp3Rqcts7BE08y49Jr6iu6xW4iQ
*/
@NameInMap("userId")
public String userId;
public static GetUserFollowStatusRequest build(java.util.Map map) throws Exception {
GetUserFollowStatusRequest self = new GetUserFollowStatusRequest();
return TeaModel.build(map, self);
}
public GetUserFollowStatusRequest setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public GetUserFollowStatusRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public GetUserFollowStatusRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}