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

me.chanjar.weixin.cp.bean.kf.WxCpKfCustomerBatchGetResp Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * The type Wx cp kf customer batch get resp.
 *
 * @author leiin  created on  2022/1/26 7:56 下午
 */
@EqualsAndHashCode(callSuper = true)
@NoArgsConstructor
@Data
public class WxCpKfCustomerBatchGetResp extends WxCpBaseResp {

  private static final long serialVersionUID = -3697709507605389887L;

  @SerializedName("customer_list")
  private List customerList;

  @SerializedName("invalid_external_userid")
  private List invalidExternalUserId;

  /**
   * From json wx cp kf customer batch get resp.
   *
   * @param json the json
   * @return the wx cp kf customer batch get resp
   */
  public static WxCpKfCustomerBatchGetResp fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpKfCustomerBatchGetResp.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy