1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.jpush.api.device;
|
| import java.util.ArrayList;
| import java.util.List;
|
| import com.google.gson.annotations.Expose;
|
| import cn.jiguang.common.resp.BaseResult;
|
| public class AliasDeviceListResult extends BaseResult {
|
| @Expose public List<String> registration_ids = new ArrayList<String>();
|
| }
|
|