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

cn.binarywang.wx.miniapp.bean.vod.WxMaVodGetMediaLinkRequest Maven / Gradle / Ivy

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

import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class WxMaVodGetMediaLinkRequest implements Serializable {
  private static final long serialVersionUID = 7495157056049312108L;

  @SerializedName("media_id")
  private Integer mediaId;
  @SerializedName("t")
  private Long t;

  @SerializedName("expr")
  private Long expr;
  @SerializedName("rlimit")
  private Long rlimit;

  @SerializedName("us")
  private String us;
  @SerializedName("whref")
  private String whRef;
  @SerializedName("bkref")
  private String bkRef;

  public String toJson() {
    return WxMaGsonBuilder.create().toJson(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy