aboutsummaryrefslogtreecommitdiff
path: root/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-12-14 20:09:40 -0600
committerIván Ávalos <avalos@disroot.org>2022-12-14 20:09:40 -0600
commit1606ed48c1b3f39cfa0e45aab22658645a9b4118 (patch)
treec2487e02a86d7ae89b12bb94d400257ccb2a879f /shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
parentfacf751f941a2f85d0ce236c4a61f21e84758199 (diff)
downloadetbsa-trackermap-mobile-1606ed48c1b3f39cfa0e45aab22658645a9b4118.tar.gz
etbsa-trackermap-mobile-1606ed48c1b3f39cfa0e45aab22658645a9b4118.tar.bz2
etbsa-trackermap-mobile-1606ed48c1b3f39cfa0e45aab22658645a9b4118.zip
Deleted unused API methods
Diffstat (limited to 'shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt')
-rw-r--r--shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt76
1 files changed, 0 insertions, 76 deletions
diff --git a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
index 049aee9..f4a6bff 100644
--- a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
+++ b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
@@ -54,81 +54,5 @@ class GeofencesApi(sessionManager: SessionManager) : ApiClient(sessionManager),
ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error")
}
}
- /**
- * Delete a Geofence
- *
- * @param id
- * @return void
- */
- suspend fun geofencesIdDelete(id: Int) {
-
- val localVariableConfig = RequestConfig(
- RequestMethod.DELETE,
- "/geofences/{id}".replace("{" + "id" + "}", "$id")
- )
- val response = request<Any?>(
- localVariableConfig
- )
-
- return when (response.responseType) {
- ResponseType.Success -> Unit
- ResponseType.Informational -> TODO()
- ResponseType.Redirection -> TODO()
- ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error")
- ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error")
- }
- }
- /**
- * Update a Geofence
- *
- * @param body
- * @param id
- * @return Geofence
- */
- @Suppress("UNCHECKED_CAST")
- suspend fun geofencesIdPut(body: Geofence, id: Int): Geofence {
- val localVariableBody: Any = body
-
- val localVariableConfig = RequestConfig(
- RequestMethod.PUT,
- "/geofences/{id}".replace("{" + "id" + "}", "$id")
- )
- val response = request<Geofence>(
- localVariableConfig, localVariableBody
- )
- return when (response.responseType) {
- ResponseType.Success -> (response as Success<*>).data as Geofence
- ResponseType.Informational -> TODO()
- ResponseType.Redirection -> TODO()
- ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error")
- ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error")
- }
- }
- /**
- * Create a Geofence
- *
- * @param body
- * @return Geofence
- */
- @Suppress("UNCHECKED_CAST")
- suspend fun geofencesPost(body: Geofence): Geofence {
- val localVariableBody: Any = body
-
- val localVariableConfig = RequestConfig(
- RequestMethod.POST,
- "/geofences"
- )
- val response = request<Geofence>(
- localVariableConfig, localVariableBody
- )
-
- return when (response.responseType) {
- ResponseType.Success -> (response as Success<*>).data as Geofence
- ResponseType.Informational -> TODO()
- ResponseType.Redirection -> TODO()
- ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error")
- ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error")
- }
- }
}