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