package com.duesk.api.models; import com.google.gson.annotations.SerializedName; public class LoginResponse { @SerializedName("success") private boolean success; @SerializedName("userID") private String userId; @SerializedName("session") private String session; @SerializedName("error") private String error; public boolean isSuccess() { return success; } public String getUserId() { return userId; } public String getSession() { return session; } public String getError() { return error; } }