View Javadoc
1   package com.foxinmy.weixin4j.wxa.api;
2   
3   import com.alibaba.fastjson.TypeReference;
4   
5   class WxaApiAsyncResult extends WxaApiResult {
6   
7   	private static final long serialVersionUID = 2020022001L;
8   
9   	public static final TypeReference<WxaApiAsyncResult> TYPE_REFERENCE
10  		= new TypeReference<WxaApiAsyncResult>() {
11  		};
12  
13  	private String traceId;
14  
15  	public WxaApiAsyncResult() {
16  	}
17  
18  	public String getTraceId() {
19  		return traceId;
20  	}
21  
22  	public void setTraceId(String traceId) {
23  		this.traceId = traceId;
24  	}
25  
26  }