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

me.chanjar.weixin.open.bean.auth.MaAuthQueryIdentityTreeResult Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.open.bean.auth;

import com.google.gson.annotations.SerializedName;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import me.chanjar.weixin.open.bean.result.WxOpenResult;
import org.jetbrains.annotations.Nullable;

import java.util.List;

/**
 * 小程序认证 查询个人认证身份选项列表 响应
 *
 * @author 广州跨界
 * created on 2024/01/11
 */
@Getter
@Setter
@NoArgsConstructor
public class MaAuthQueryIdentityTreeResult extends WxOpenResult {

  /**
   * 子节点信息 非叶子节点必有
   */
  @Nullable
  @SerializedName("node_list")
  private List nodeList;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy