Marker

The marker object contains the following properties:

public struct Marker {
public var name: String
public var time: Float
public var duration: Float
public init(
name: String,
time: Float,
duration: Float
) {
self.name = name
self.time = time
self.duration = duration
}
}