com.wechat.pay.java.service.file.model.FileUploadResponse 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.file.model;
import com.wechat.pay.java.core.util.GsonUtil;
public class FileUploadResponse {
private String mediaId;
public String getMediaId() {
return mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
}
@Override
public String toString() {
return GsonUtil.getGson().toJson(this);
}
}