All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.bean.external.acquisition.WxCpCustomerAcquisitionStatistic Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.external.acquisition;

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

/**
 * 获客链接的使用详情
 *
 * @author Hugo
 * @date 2023/12/11 10:31
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class WxCpCustomerAcquisitionStatistic extends WxCpBaseResp {
  private static final long serialVersionUID = -3816540677590841079L;

  /**
   * 点击链接客户数
   */
  @SerializedName("click_link_customer_cnt")
  private Integer clickLinkCustomerCnt;

  /**
   * 新增客户数
   */
  @SerializedName("new_customer_cnt")
  private Integer newCustomerCnt;

  public static WxCpCustomerAcquisitionStatistic fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpCustomerAcquisitionStatistic.class);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy