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