IndoorLevelChangeAction

public struct IndoorLevelChangeAction : Hashable

Represents the level change action.

  • Type of the connector to change the level.

    Declaration

    Swift

    public var connector: IndoorFeatures
  • The number of levels to change, positive for up, negative for down. For example, a value of -1 means that a user needs to go one level down. The value is never 0.

    Declaration

    Swift

    public var deltaZ: Int32
  • Creates an Indoor level change action object and assign default values for level change action.

    Declaration

    Swift

    public init(connector: IndoorFeatures, deltaZ: Int32)