com.aliyun.dingtalkexclusive_1_0.models.UpdatePartnerVisibilityRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class UpdatePartnerVisibilityRequest extends TeaModel {
/**
* example:
* 0.0.5
*/
@NameInMap("deptIds")
public java.util.List deptIds;
/**
* This parameter is required.
*
* example:
* 1312312
*/
@NameInMap("labelId")
public Long labelId;
/**
* example:
* 500000003
*/
@NameInMap("userIds")
public java.util.List userIds;
public static UpdatePartnerVisibilityRequest build(java.util.Map map) throws Exception {
UpdatePartnerVisibilityRequest self = new UpdatePartnerVisibilityRequest();
return TeaModel.build(map, self);
}
public UpdatePartnerVisibilityRequest setDeptIds(java.util.List deptIds) {
this.deptIds = deptIds;
return this;
}
public java.util.List getDeptIds() {
return this.deptIds;
}
public UpdatePartnerVisibilityRequest setLabelId(Long labelId) {
this.labelId = labelId;
return this;
}
public Long getLabelId() {
return this.labelId;
}
public UpdatePartnerVisibilityRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}