added iOS source code
[wl-app.git] / iOS / Pods / MatomoTracker / MatomoTracker / CustomVariable.swift
1
2 import Foundation
3
4
5 /// See Custom Variable documentation here: https://piwik.org/docs/custom-variables/
6 public struct CustomVariable {
7     /// The index of the variable.
8     let index: UInt
9
10     /// The name of the variable.
11     let name: String
12     
13     /// The value of the variable.
14     let value: String
15 }