AvatarSaveV3.java
1.11 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.bitstrips.imoji.abv3.model;
import android.support.annotation.NonNull;
import android.support.annotation.VisibleForTesting;
import com.google.gson.annotations.SerializedName;
import java.util.Map;
public class AvatarSaveV3
{
@SerializedName("gender")
private final int a;
@SerializedName("style")
private final int b;
@SerializedName("option_ids")
private final Map<String, Integer> c;
@SerializedName("mode")
private final String d;
public AvatarSaveV3(int paramInt1, int paramInt2, @NonNull Map<String, Integer> paramMap, String paramString)
{
this.a = paramInt1;
this.b = paramInt2;
this.c = paramMap;
this.d = paramString;
}
public int getGender()
{
return this.a;
}
public String getMode()
{
return this.d;
}
@VisibleForTesting
public Map<String, Integer> getOptionIds()
{
return this.c;
}
public int getStyle()
{
return this.b;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/abv3/model/AvatarSaveV3.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/