OpenChargeMap: also load user comments (not yet implemented)

This commit is contained in:
johan12345
2021-07-03 19:00:17 +02:00
parent 91509f5846
commit e098c70684

View File

@@ -34,7 +34,8 @@ interface OpenChargeMapApi {
@GET("poi/")
suspend fun getChargepointDetail(
@Query("chargepointid") id: Long,
@Query("compact") compact: Boolean = false
@Query("compact") compact: Boolean = false,
@Query("includecomments") includeComments: Boolean = true
): Response<List<OCMChargepoint>>
@GET("referencedata/")