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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy