com.aliyun.dingtalkoauth2_1_0.models.GetAuthInfoRequest 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.dingtalkoauth2_1_0.models;
import com.aliyun.tea.*;
public class GetAuthInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("authCorpId")
public String authCorpId;
public static GetAuthInfoRequest build(java.util.Map map) throws Exception {
GetAuthInfoRequest self = new GetAuthInfoRequest();
return TeaModel.build(map, self);
}
public GetAuthInfoRequest setAuthCorpId(String authCorpId) {
this.authCorpId = authCorpId;
return this;
}
public String getAuthCorpId() {
return this.authCorpId;
}
}