You need to retrieve a list of photos from an API. Which code snippet defines an HTML GET request in Retrofit?
@GET("photo") fun listPhotos() : Call
@LIST("photo") fun listPhotos() : Call<List>
@GET("photo") fun listPhotos() : Call<List>
@GET("photo/{id}"} fun listPhotos(@Path("id") id:Long?) : Call