com.aliyun.dingtalkattendance_1_0.models.CheckWritePermissionRequest 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class CheckWritePermissionRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* GROUP
*/
@NameInMap("category")
public String category;
/**
* This parameter is required.
*/
@NameInMap("entityIds")
public java.util.List entityIds;
/**
* This parameter is required.
*
* example:
* 050728xxx921
*/
@NameInMap("opUserId")
public String opUserId;
/**
* This parameter is required.
*
* example:
* SCHEDULE
*/
@NameInMap("resourceKey")
public String resourceKey;
public static CheckWritePermissionRequest build(java.util.Map map) throws Exception {
CheckWritePermissionRequest self = new CheckWritePermissionRequest();
return TeaModel.build(map, self);
}
public CheckWritePermissionRequest setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public CheckWritePermissionRequest setEntityIds(java.util.List entityIds) {
this.entityIds = entityIds;
return this;
}
public java.util.List getEntityIds() {
return this.entityIds;
}
public CheckWritePermissionRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public CheckWritePermissionRequest setResourceKey(String resourceKey) {
this.resourceKey = resourceKey;
return this;
}
public String getResourceKey() {
return this.resourceKey;
}
}