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

com.aliyun.dingtalkcontact_1_0.models.GetBranchAuthDataRequest 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.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class GetBranchAuthDataRequest extends TeaModel {
    // 查询条件
    @NameInMap("body")
    public java.util.Map body;

    // 分支组织corpId
    @NameInMap("branchCorpId")
    public String branchCorpId;

    // 数据编码
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy