com.aliyun.dingtalkcrm_1_0.models.DescribeMetaModelRequest 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 DescribeMetaModelRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizTypes")
public java.util.List bizTypes;
/**
* This parameter is required.
*/
@NameInMap("operatorUserId")
public String operatorUserId;
/**
* This parameter is required.
*/
@NameInMap("tenant")
public String tenant;
public static DescribeMetaModelRequest build(java.util.Map map) throws Exception {
DescribeMetaModelRequest self = new DescribeMetaModelRequest();
return TeaModel.build(map, self);
}
public DescribeMetaModelRequest setBizTypes(java.util.List bizTypes) {
this.bizTypes = bizTypes;
return this;
}
public java.util.List getBizTypes() {
return this.bizTypes;
}
public DescribeMetaModelRequest setOperatorUserId(String operatorUserId) {
this.operatorUserId = operatorUserId;
return this;
}
public String getOperatorUserId() {
return this.operatorUserId;
}
public DescribeMetaModelRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
}