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