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

me.chanjar.weixin.cp.bean.license.account.WxCpTpLicenseActiveInfoByUserResp Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * 某个企业成员的激活情况
 * 文档地址:https://developer.work.weixin.qq.com/document/path/95555
 *
 * @author Totoro  created on  2022-6-27 14:51:19
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class WxCpTpLicenseActiveInfoByUserResp extends WxCpBaseResp {
  private static final long serialVersionUID = -5172901191911873330L;


  @SerializedName("active_status")
  private Integer activeStatus;

  @SerializedName("active_info_list")
  private List activeInfoList;


  /**
   * From json wx cp tp license active info by user resp.
   *
   * @param json the json
   * @return the wx cp tp license active info by user resp
   */
  public static WxCpTpLicenseActiveInfoByUserResp fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpTpLicenseActiveInfoByUserResp.class);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy