SystemNavigationOptions

public struct SystemNavigationOptions

This model is used to send data with system navigation events.

  • The identifier of the target Destination.

    Declaration

    Swift

    public var targetID: UUID?
  • The identifier of the parent Destination.

    Declaration

    Swift

    public var parentID: UUID?
  • The identifier of the currently presented Destination.

    Declaration

    Swift

    public var currentID: UUID?
  • The initializer.

    Declaration

    Swift

    public init(targetID: UUID? = nil, currentID: UUID? = nil, parentID: UUID? = nil)

    Parameters

    targetID

    The identifier of the target Destination.

    currentID

    The identifier of the currently presented Destination.

    parentID

    The identifier of the parent Destination.