I found the solution. Need to add to retrofit builder this
val retrofit = Retrofit.Builder() .baseUrl(DIRECTORY_URL) .client(client) .addConverterFactory(GsonConverterFactory.create(GsonBuilder().serializeNulls().create())) .build()
CLICK HERE to find out more related problems solutions.