added iOS source code
[wl-app.git] / iOS / Pods / MatomoTracker / MatomoTracker / CustomVariable.swift
diff --git a/iOS/Pods/MatomoTracker/MatomoTracker/CustomVariable.swift b/iOS/Pods/MatomoTracker/MatomoTracker/CustomVariable.swift
new file mode 100644 (file)
index 0000000..99dbe51
--- /dev/null
@@ -0,0 +1,15 @@
+
+import Foundation
+
+
+/// See Custom Variable documentation here: https://piwik.org/docs/custom-variables/
+public struct CustomVariable {
+    /// The index of the variable.
+    let index: UInt
+
+    /// The name of the variable.
+    let name: String
+    
+    /// The value of the variable.
+    let value: String
+}