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

com.aliyun.dingtalkoauth2_1_0.models.GetAccessTokenRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetAccessTokenRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("appKey") public String appKey; @NameInMap("appSecret") public String appSecret; public static GetAccessTokenRequest build(java.util.Map map) throws Exception { GetAccessTokenRequest self = new GetAccessTokenRequest(); return TeaModel.build(map, self); } public GetAccessTokenRequest setAppKey(String appKey) { this.appKey = appKey; return this; } public String getAppKey() { return this.appKey; } public GetAccessTokenRequest setAppSecret(String appSecret) { this.appSecret = appSecret; return this; } public String getAppSecret() { return this.appSecret; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy