aboutsummaryrefslogtreecommitdiff
path: root/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt
diff options
context:
space:
mode:
authorIsidro Henoch <imhenoch@protonmail.com>2021-12-27 14:27:17 -0600
committerIsidro Henoch <imhenoch@protonmail.com>2021-12-27 14:27:17 -0600
commitf37c6de28b014af0cdbf278986a668030f54cc55 (patch)
tree2ddc6b332c2c63c27ae5656142f4d719bc140ae8 /shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt
parent7c8a65b8d1ae8a049bf67260acb6fafbd95adac9 (diff)
downloadetbsa-trackermap-mobile-f37c6de28b014af0cdbf278986a668030f54cc55.tar.gz
etbsa-trackermap-mobile-f37c6de28b014af0cdbf278986a668030f54cc55.tar.bz2
etbsa-trackermap-mobile-f37c6de28b014af0cdbf278986a668030f54cc55.zip
Implements the report functionality, UI is missing
Diffstat (limited to 'shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt')
-rw-r--r--shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt47
1 files changed, 47 insertions, 0 deletions
diff --git a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt
new file mode 100644
index 0000000..c06b864
--- /dev/null
+++ b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/models/Stop.kt
@@ -0,0 +1,47 @@
+/**
+ * Traccar
+ * Traccar GPS tracking server API documentation. To use the API you need to have a server instance. For testing purposes you can use one of free [demo servers](https://www.traccar.org/demo-server/). For production use you can install your own server or get a [subscription service](https://www.traccar.org/product/tracking-server/).
+ *
+ * OpenAPI spec version: 4.14
+ * Contact: support@traccar.org
+ *
+ * NOTE: This class is auto generated by the swagger code generator program.
+ * https://github.com/swagger-api/swagger-codegen.git
+ * Do not edit the class manually.
+ */
+package mx.trackermap.TrackerMap.client.models
+
+import kotlinx.serialization.Serializable
+
+
+/**
+ *
+ * @param deviceId
+ * @param deviceName
+ * @param duration
+ * @param startTime in IS0 8601 format. eg. `1963-11-22T18:30:00Z`
+ * @param address
+ * @param lat
+ * @param lon
+ * @param endTime in IS0 8601 format. eg. `1963-11-22T18:30:00Z`
+ * @param spentFuel in liters
+ * @param engineHours
+ */
+@Serializable
+data class Stop (
+
+ val deviceId: kotlin.Int? = null,
+ val deviceName: kotlin.String? = null,
+ val duration: kotlin.Int? = null,
+ /* in IS0 8601 format. eg. `1963-11-22T18:30:00Z` */
+ val startTime: String? = null,
+ val address: kotlin.String? = null,
+ val lat: Double? = null,
+ val lon: Double? = null,
+ /* in IS0 8601 format. eg. `1963-11-22T18:30:00Z` */
+ val endTime: String? = null,
+ /* in liters */
+ val spentFuel: Double? = null,
+ val engineHours: kotlin.Int? = null
+) {
+} \ No newline at end of file