All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalklink_1_0.models.QueryUserFollowStatusRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklink_1_0.models;

import com.aliyun.tea.*;

public class QueryUserFollowStatusRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

ding1234

*/ @NameInMap("accountId") public String accountId; /** * example: *

UgIzXXo+Rp3Rqcts7BE08y49Jr6iu6xW4iQ

*/ @NameInMap("unionId") public String unionId; public static QueryUserFollowStatusRequest build(java.util.Map map) throws Exception { QueryUserFollowStatusRequest self = new QueryUserFollowStatusRequest(); return TeaModel.build(map, self); } public QueryUserFollowStatusRequest setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } public QueryUserFollowStatusRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy