aboutsummaryrefslogtreecommitdiff
path: root/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt
diff options
context:
space:
mode:
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")
- }
- }
}