
com.aliyun.dingtalklink_1_0.models.GetFollowerAuthInfoRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklink_1_0.models;
import com.aliyun.tea.*;
public class GetFollowerAuthInfoRequest extends TeaModel {
/**
* example:
* ding1234
*/
@NameInMap("accountId")
public String accountId;
/**
* This parameter is required.
*
* example:
* Rp3Rqcts7BE08y49Jr6iu6xW4iQ
*/
@NameInMap("userId")
public String userId;
public static GetFollowerAuthInfoRequest build(java.util.Map map) throws Exception {
GetFollowerAuthInfoRequest self = new GetFollowerAuthInfoRequest();
return TeaModel.build(map, self);
}
public GetFollowerAuthInfoRequest setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public GetFollowerAuthInfoRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy