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

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

There is a newer version: 2.1.88
Show 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 ApplyFollowerAuthInfoRequest extends TeaModel {
    @NameInMap("appAuthKey")
    public String appAuthKey;

    /**
     * example:
     * 

Contact.User.mobile

*/ @NameInMap("fieldScope") public String fieldScope; /** *

This parameter is required.

* * example: *

sid22b31b4bf59ef2c783f7

*/ @NameInMap("sessionId") public String sessionId; /** *

This parameter is required.

* * example: *

idzb26bxl64vqx2keyi

*/ @NameInMap("userId") public String userId; public static ApplyFollowerAuthInfoRequest build(java.util.Map map) throws Exception { ApplyFollowerAuthInfoRequest self = new ApplyFollowerAuthInfoRequest(); return TeaModel.build(map, self); } public ApplyFollowerAuthInfoRequest setAppAuthKey(String appAuthKey) { this.appAuthKey = appAuthKey; return this; } public String getAppAuthKey() { return this.appAuthKey; } public ApplyFollowerAuthInfoRequest setFieldScope(String fieldScope) { this.fieldScope = fieldScope; return this; } public String getFieldScope() { return this.fieldScope; } public ApplyFollowerAuthInfoRequest setSessionId(String sessionId) { this.sessionId = sessionId; return this; } public String getSessionId() { return this.sessionId; } public ApplyFollowerAuthInfoRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy