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

me.chanjar.weixin.cp.bean.external.WxCpGroupJoinWayResult Maven / Gradle / Ivy

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

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 Jc
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class WxCpGroupJoinWayResult extends WxCpBaseResp {
  private static final long serialVersionUID = 5621905029624794129L;
  @SerializedName("config_id")
  private String configId;

  /**
   * From json wx cp group join way result.
   *
   * @param json the json
   * @return the wx cp group join way result
   */
  public static WxCpGroupJoinWayResult fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpGroupJoinWayResult.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy