package com.brentvatne.common.api /* * class to handle timedEvent retrieved from the stream */ class TimedMetadata(_identifier: String? = null, _value: String? = null) { var identifier: String? = _identifier var value: String? = _value }