Marker

public struct Marker : Codable, Hashable

Represents the last read position within a user’s timelines.

  • Undocumented

    Declaration

    Swift

    public init(lastReadId: String, updatedAt: Date, version: Int)
  • The ID of the most recently viewed entity.

    Declaration

    Swift

    public var lastReadId: String
  • The timestamp of when the marker was set.

    Declaration

    Swift

    public var updatedAt: Date
  • Used for locking to prevent write conflicts.

    Declaration

    Swift

    public var version: Int
  • Undocumented

    See more

    Declaration

    Swift

    public enum Timeline : String, Codable