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

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

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

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

/**
 * 小程序认证 提交操作 参数
 *
 * @author 广州跨界
 * created on 2024/01/11
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MaAuthSubmitParam {

  /**
   * 认证信息
   */
  @NotNull
  @SerializedName("auth_data")
  private MaAuthSubmitParamAuthData authData;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy