
com.aliyun.dingtalkcrm_1_0.models.AddMetaModelFieldResponseBody Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy