com.dahuatech.icc.passengerflow.model.v202207.label.CustomerLabelAllRequest Maven / Gradle / Ivy
package com.dahuatech.icc.passengerflow.model.v202207.label;
import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
import com.dahuatech.icc.oauth.model.v202010.HttpConfigInfo;
import com.dahuatech.icc.passengerflow.constant.PassengerFlowConstant;
/**
* program:java-sdk
*
* Author: 355079
* Date:2022-08-08 17:04
* Description: 获取自定义标签列表
*/
public class CustomerLabelAllRequest extends AbstractIccRequest {
public CustomerLabelAllRequest() throws ClientException {
super(PassengerFlowConstant.url(PassengerFlowConstant.CUSTOMER_LABEL_ALL,null), Method.GET);
}
public CustomerLabelAllRequest(HttpConfigInfo httpConfigInfo, String url, Method method) throws ClientException {
super(httpConfigInfo.getPrefixUrl() + url,method,Boolean.TRUE);
}
@Override
public Class getResponseClass() {
return CustomerLabelAllResponse.class;
}
public void businessValid() {
}
}