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

com.aliyun.dingtalkcrm_1_0.models.DescribeMetaModelRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy