com.aliyun.dingtalkcrm_1_0.models.AddMetaModelFieldResponseBody 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 AddMetaModelFieldResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizType")
public String bizType;
public static AddMetaModelFieldResponseBody build(java.util.Map map) throws Exception {
AddMetaModelFieldResponseBody self = new AddMetaModelFieldResponseBody();
return TeaModel.build(map, self);
}
public AddMetaModelFieldResponseBody setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
}