admin
2022-01-12 4a7367a869ef12375ea6678ca44e102b8919c624
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
        }
    }
    
}