![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcrm_1_0.models.GetCrmRolePermissionRequest 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class GetCrmRolePermissionRequest extends TeaModel {
/**
* example:
* crm_customer
*/
@NameInMap("bizType")
public String bizType;
/**
* example:
* PROC-9EC85C45-E404-4E26-9300-E67455F0FF8F
*/
@NameInMap("resourceId")
public String resourceId;
public static GetCrmRolePermissionRequest build(java.util.Map map) throws Exception {
GetCrmRolePermissionRequest self = new GetCrmRolePermissionRequest();
return TeaModel.build(map, self);
}
public GetCrmRolePermissionRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public GetCrmRolePermissionRequest setResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
public String getResourceId() {
return this.resourceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy