![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcrm_1_0.models.GetRelatedViewTabMetaResponseBody 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 GetRelatedViewTabMetaResponseBody extends TeaModel {
@NameInMap("results")
public java.util.List results;
public static GetRelatedViewTabMetaResponseBody build(java.util.Map map) throws Exception {
GetRelatedViewTabMetaResponseBody self = new GetRelatedViewTabMetaResponseBody();
return TeaModel.build(map, self);
}
public GetRelatedViewTabMetaResponseBody setResults(java.util.List results) {
this.results = results;
return this;
}
public java.util.List getResults() {
return this.results;
}
public static class GetRelatedViewTabMetaResponseBodyResults extends TeaModel {
/**
* example:
* PROC-4EFE895D-A291-4A65-9FD6-99431604DF67
*/
@NameInMap("formCode")
public String formCode;
/**
* example:
* OpenDataField_K99RPMMRGJ40
*/
@NameInMap("relateComponentId")
public String relateComponentId;
/**
* example:
* 212
*/
@NameInMap("tabTitle")
public String tabTitle;
public static GetRelatedViewTabMetaResponseBodyResults build(java.util.Map map) throws Exception {
GetRelatedViewTabMetaResponseBodyResults self = new GetRelatedViewTabMetaResponseBodyResults();
return TeaModel.build(map, self);
}
public GetRelatedViewTabMetaResponseBodyResults setFormCode(String formCode) {
this.formCode = formCode;
return this;
}
public String getFormCode() {
return this.formCode;
}
public GetRelatedViewTabMetaResponseBodyResults setRelateComponentId(String relateComponentId) {
this.relateComponentId = relateComponentId;
return this;
}
public String getRelateComponentId() {
return this.relateComponentId;
}
public GetRelatedViewTabMetaResponseBodyResults setTabTitle(String tabTitle) {
this.tabTitle = tabTitle;
return this;
}
public String getTabTitle() {
return this.tabTitle;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy