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.67
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;

    /**
     * 

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy