com.aliyun.dingtalkcontact_1_0.models.GetBranchAuthDataRequest 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class GetBranchAuthDataRequest extends TeaModel {
@NameInMap("body")
public java.util.Map body;
/**
* This parameter is required.
*
* example:
* dinglkj123hj25jk54j2
*/
@NameInMap("branchCorpId")
public String branchCorpId;
/**
* This parameter is required.
*
* example:
* eduStuCnt
*/
@NameInMap("code")
public String code;
public static GetBranchAuthDataRequest build(java.util.Map map) throws Exception {
GetBranchAuthDataRequest self = new GetBranchAuthDataRequest();
return TeaModel.build(map, self);
}
public GetBranchAuthDataRequest setBody(java.util.Map body) {
this.body = body;
return this;
}
public java.util.Map getBody() {
return this.body;
}
public GetBranchAuthDataRequest setBranchCorpId(String branchCorpId) {
this.branchCorpId = branchCorpId;
return this;
}
public String getBranchCorpId() {
return this.branchCorpId;
}
public GetBranchAuthDataRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
}