AvatarGetMappedOptionIdsResponse.java 716 Bytes
package com.bitstrips.imoji.abv3.model;

import com.google.gson.annotations.SerializedName;
import java.util.Map;

public class AvatarGetMappedOptionIdsResponse
{
  @SerializedName("style")
  private int a;
  @SerializedName("gender")
  private int b;
  @SerializedName("option_ids")
  private Map<String, Integer> c;
  
  public int getGender()
  {
    return this.b;
  }
  
  public Map<String, Integer> getOptionIds()
  {
    return this.c;
  }
  
  public int getStyle()
  {
    return this.a;
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/abv3/model/AvatarGetMappedOptionIdsResponse.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */