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

cn.binarywang.wx.miniapp.bean.delivery.TraceWaybillResponse Maven / Gradle / Ivy

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

import cn.binarywang.wx.miniapp.bean.WxMaBaseResponse;
import cn.binarywang.wx.miniapp.json.WxMaGsonBuilder;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import lombok.Data;
import lombok.experimental.Accessors;

/**
 * 
 * 传运单接口 trace_waybill 响应参数
 * 
* * @author boris * @since 2022-04-01 */ @Data @Accessors(chain = true) public class TraceWaybillResponse extends WxMaBaseResponse implements Serializable { private static final long serialVersionUID = 3773007367000633663L; /** * 查询id. */ @SerializedName("waybill_token") private String waybillToken; public static TraceWaybillResponse fromJson(String json) { return WxMaGsonBuilder.create().fromJson(json, TraceWaybillResponse.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy