AvatarRecognitionResult.java
788 Bytes
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
29
30
31
32
33
34
35
36
37
38
package com.bitstrips.imoji.abv3.model;
import com.google.gson.annotations.SerializedName;
import java.util.Collections;
import java.util.Map;
public class AvatarRecognitionResult
{
@SerializedName("result")
private a a;
@SerializedName("success")
private boolean b;
public Map<String, Integer[]> getAttributes()
{
if (this.a != null) {
return this.a.a;
}
return Collections.emptyMap();
}
public boolean isSuccess()
{
return this.b;
}
static final class a
{
@SerializedName("avatarData")
Map<String, Integer[]> a;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/abv3/model/AvatarRecognitionResult.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/