com.lostjs.wx4j.data.response.AddContactResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wx4j Show documentation
Show all versions of wx4j Show documentation
A wechat api library through web wechat protocol.
package com.lostjs.wx4j.data.response;
import com.fasterxml.jackson.annotation.JsonSetter;
/**
* Created by pw on 04/10/2016.
*/
public class AddContactResponse implements WxResponse {
private BaseResponse baseResponse;
@Override
public BaseResponse getBaseResponse() {
return baseResponse;
}
@JsonSetter("BaseResponse")
public void setBaseResponse(BaseResponse baseResponse) {
this.baseResponse = baseResponse;
}
}