all right problem solved forgot i was using this b...
# android
s
all right problem solved forgot i was using this before we changed the response pattern from the api…
Copy code
private fun providesGson(): Gson {
        val gsonBuilder = GsonBuilder()
        gsonBuilder.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE)
        return gsonBuilder.create()
    }
y
I suggest you make use of @SerializedName("status") etc to avoid these kinds of ambiguities.
s
yea..thanks