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

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

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

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.List;

/**
 * 职业身份 节点信息
 *
 * @author 广州跨界
 * created on 2024/01/11
 */
@Data
@NoArgsConstructor
public class MaAuthQueryIdentityTreeResultIdentityNode {

  /**
   * 职业身份名
   */
  @NotNull
  private String name;

  /**
   * 职业身份节点ID
   */
  @NotNull
  @SerializedName("node_id")
  private Integer nodeId;

  /**
   * 要求信息 叶子节点特有
   */
  @Nullable
  @SerializedName("leaf_info")
  private MaAuthQueryIdentityTreeResultIdentityLeaf leafInfo;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy