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

com.aliyun.dingtalkedu_1_0.models.DeleteOrgRelationRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    @NameInMap("authCode")
    public String authCode;

    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy