BitmojiApiErrorResponse.java
677 Bytes
package com.bitstrips.imoji.api;
import com.google.gson.annotations.SerializedName;
public class BitmojiApiErrorResponse
{
@SerializedName("error")
String errorType;
@SerializedName("message")
String message;
@SerializedName("statusCode")
Integer statusCode;
public String getErrorType()
{
return this.errorType;
}
public String getMessage()
{
return this.message;
}
public Integer getStatusCode()
{
return this.statusCode;
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/api/BitmojiApiErrorResponse.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/