Visit

class Visit(    val scenePath: List<String>,     val campaignId: String,     var times: Int = 1,     val first: Calendar = CleanInsights.now(),     val last: Calendar = CleanInsights.now()) : DataPoint

Parameters

scenePath

: A hierarchical path to the scene visited.

campaignId

: The campaign ID this data point is for.

times

: Number of times this data point has arisen between first and last. OPTIONAL, defaults to 1.

first

: The first time this data point has arisen. OPTIONAL, defaults to now.

last

: The last time this data point has arisen. OPTIONAL, defaults to now.

Constructors

Link copied to clipboard
fun Visit(    scenePath: List<String>,     campaignId: String,     period: Period?)
Link copied to clipboard
fun Visit(    scenePath: List<String>,     campaignId: String,     times: Int = 1,     first: Calendar = CleanInsights.now(),     last: Calendar = CleanInsights.now())

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val campaignId: String
Link copied to clipboard
val first: Calendar
Link copied to clipboard
val last: Calendar
Link copied to clipboard
val scenePath: List<String>
Link copied to clipboard
var times: Int = 1