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

com.aliyun.dingtalkexclusive_1_0.models.DistributePartnerAppRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class DistributePartnerAppRequest extends TeaModel {
    // 应用id
    @NameInMap("appId")
    public Long appId;

    @NameInMap("deptId")
    public Long deptId;

    @NameInMap("subCorpId")
    public String subCorpId;

    // 分发对象类型
    @NameInMap("type")
    public Long type;

    public static DistributePartnerAppRequest build(java.util.Map map) throws Exception {
        DistributePartnerAppRequest self = new DistributePartnerAppRequest();
        return TeaModel.build(map, self);
    }

    public DistributePartnerAppRequest setAppId(Long appId) {
        this.appId = appId;
        return this;
    }
    public Long getAppId() {
        return this.appId;
    }

    public DistributePartnerAppRequest setDeptId(Long deptId) {
        this.deptId = deptId;
        return this;
    }
    public Long getDeptId() {
        return this.deptId;
    }

    public DistributePartnerAppRequest setSubCorpId(String subCorpId) {
        this.subCorpId = subCorpId;
        return this;
    }
    public String getSubCorpId() {
        return this.subCorpId;
    }

    public DistributePartnerAppRequest setType(Long type) {
        this.type = type;
        return this;
    }
    public Long getType() {
        return this.type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy