com.wechat.pay.java.service.certificate.model.DownloadCertificateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechatpay-java Show documentation
Show all versions of wechatpay-java Show documentation
A Java SDK for WeChat Pay APIv3
package com.wechat.pay.java.service.certificate.model;
import com.google.gson.annotations.SerializedName;
import com.wechat.pay.java.core.util.GsonUtil;
import java.util.List;
public class DownloadCertificateResponse {
private static final long serialVersionUID = -4605481743126436851L;
@SerializedName("data")
List dataList;
public List getData() {
return dataList;
}
public void setData(List dataList) {
this.dataList = dataList;
}
@Override
public String toString() {
return GsonUtil.getGson().toJson(this);
}
}