ElectronicHorizonSegmentChanges
public struct ElectronicHorizonSegmentChanges : Hashable
A struct describing the set of changes in horizon segments between two consecutive updates. Includes lists of both newly added and removed segments.
Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
A list of segments that were added since the previous update. May be empty if no segments were added.
Declaration
Swift
public var added: [ElectronicHorizonSegment] -
Identifiers of segments that were removed since the previous update. May be empty if no segments were removed.
Declaration
Swift
public var removedIds: [ElectronicHorizonSegmentId] -
Creates a new instance.
Offline availability: This property is available online and offline.
Declaration
Swift
public init(added: [ElectronicHorizonSegment] = [], removedIds: [ElectronicHorizonSegmentId] = [])