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

cn.binarywang.wx.miniapp.bean.cloud.WxCloudGetQcloudTokenResult Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.cloud;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.io.Serializable;

/**
 * 获取腾讯云API调用凭证结果.
 *
 * @author Binary Wang
 * created on  2020-01-27
 */
@Data
public class WxCloudGetQcloudTokenResult implements Serializable {
  private static final long serialVersionUID = -1505786395531138286L;

  /**
   * secretid
   */
  @SerializedName("secretid")
  private String secretId;

  /**
   * secretkey
   */
  @SerializedName("secretkey")
  private String secretKey;

  /**
   * token
   */
  @SerializedName("token")
  private String token;

  /**
   * 过期时间戳
   */
  @SerializedName("expired_time")
  private Long expiredTime;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy