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

com.aliyun.dingtalkexclusive_1_0.models.SetDeptPartnerTypeAndNumRequest 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 SetDeptPartnerTypeAndNumRequest extends TeaModel {
    // 部门id
    @NameInMap("deptId")
    public String deptId;

    // 伙伴类型id列表
    @NameInMap("labelIds")
    public java.util.List labelIds;

    // 伙伴编码
    @NameInMap("partnerNum")
    public String partnerNum;

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

    public SetDeptPartnerTypeAndNumRequest setDeptId(String deptId) {
        this.deptId = deptId;
        return this;
    }
    public String getDeptId() {
        return this.deptId;
    }

    public SetDeptPartnerTypeAndNumRequest setLabelIds(java.util.List labelIds) {
        this.labelIds = labelIds;
        return this;
    }
    public java.util.List getLabelIds() {
        return this.labelIds;
    }

    public SetDeptPartnerTypeAndNumRequest setPartnerNum(String partnerNum) {
        this.partnerNum = partnerNum;
        return this;
    }
    public String getPartnerNum() {
        return this.partnerNum;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy