com.aliyun.dingtalkedu_1_0.models.DeleteOrgRelationRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class DeleteOrgRelationRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("authCode")
public String authCode;
/**
* This parameter is required.
*/
@NameInMap("targetCorpId")
public String targetCorpId;
public static DeleteOrgRelationRequest build(java.util.Map map) throws Exception {
DeleteOrgRelationRequest self = new DeleteOrgRelationRequest();
return TeaModel.build(map, self);
}
public DeleteOrgRelationRequest setAuthCode(String authCode) {
this.authCode = authCode;
return this;
}
public String getAuthCode() {
return this.authCode;
}
public DeleteOrgRelationRequest setTargetCorpId(String targetCorpId) {
this.targetCorpId = targetCorpId;
return this;
}
public String getTargetCorpId() {
return this.targetCorpId;
}
}