com.dingtalk.api.request.OapiTdpProjectMemberRemoveRequest Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.request;
import com.taobao.api.internal.util.RequestCheckUtils;
import java.util.Map;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.dingtalk.api.DingTalkConstants;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.internal.util.TaobaoUtils;
import com.dingtalk.api.response.OapiTdpProjectMemberRemoveResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.tdp.project.member.remove request
*
* @author top auto create
* @since 1.0, 2020.12.23
*/
public class OapiTdpProjectMemberRemoveRequest extends BaseTaobaoRequest {
/**
* 成员ID
*/
private String memberId;
/**
* 微应用agentId
*/
private Long microappAgentId;
/**
* 操作者id
*/
private String operatorUserid;
public void setMemberId(String memberId) {
this.memberId = memberId;
}
public String getMemberId() {
return this.memberId;
}
public void setMicroappAgentId(Long microappAgentId) {
this.microappAgentId = microappAgentId;
}
public Long getMicroappAgentId() {
return this.microappAgentId;
}
public void setOperatorUserid(String operatorUserid) {
this.operatorUserid = operatorUserid;
}
public String getOperatorUserid() {
return this.operatorUserid;
}
public String getApiMethodName() {
return "dingtalk.oapi.tdp.project.member.remove";
}
private String topResponseType = Constants.RESPONSE_TYPE_DINGTALK_OAPI;
public String getTopResponseType() {
return this.topResponseType;
}
public void setTopResponseType(String topResponseType) {
this.topResponseType = topResponseType;
}
public String getTopApiCallType() {
return DingTalkConstants.CALL_TYPE_OAPI;
}
private String topHttpMethod = DingTalkConstants.HTTP_METHOD_POST;
public String getTopHttpMethod() {
return this.topHttpMethod;
}
public void setTopHttpMethod(String topHttpMethod) {
this.topHttpMethod = topHttpMethod;
}
public void setHttpMethod(String httpMethod) {
this.setTopHttpMethod(httpMethod);
}
public Map getTextParams() {
TaobaoHashMap txtParams = new TaobaoHashMap();
txtParams.put("member_id", this.memberId);
txtParams.put("microapp_agent_id", this.microappAgentId);
txtParams.put("operator_userid", this.operatorUserid);
if(this.udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public Class getResponseClass() {
return OapiTdpProjectMemberRemoveResponse.class;
}
public void check() throws ApiRuleException {
RequestCheckUtils.checkNotEmpty(memberId, "memberId");
RequestCheckUtils.checkNotEmpty(operatorUserid, "operatorUserid");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy