package cn.jpush.api.push;
|
|
import com.google.gson.annotations.Expose;
|
|
import cn.jiguang.common.resp.BaseResult;
|
|
public class PushResult extends BaseResult {
|
|
private static final long serialVersionUID = 93783137655776743L;
|
|
@Expose public long msg_id;
|
@Expose public int sendno;
|
@Expose public int statusCode;
|
@Expose public Error error;
|
public class Error {
|
@Expose String message;
|
@Expose int code;
|
|
public String getMessage() {
|
return this.message;
|
}
|
|
public int getCode() {
|
return this.code;
|
}
|
}
|
|
}
|