IndoorSpaceData

public struct IndoorSpaceData : Hashable

Represents the space data for an indoor maneuver.

  • The category of the space.

    Declaration

    Swift

    public var spaceCategory: String
  • The type of the space.

    Declaration

    Swift

    public var spaceType: String
  • The optional name of the space.

    Declaration

    Swift

    public var name: String?
  • Creates an object and assign values for indoor space data.

    Declaration

    Swift

    public init(spaceCategory: String, spaceType: String, name: String? = nil)