IndoorRouteNotice
public struct IndoorRouteNotice : Hashable
Explains an issue encountered during indoor route calculation.
-
The indoor route notice code.
Declaration
Swift
public var code: IndoorRouteNoticeCode -
The notice title providing a short summary of the issue.
Declaration
Swift
public var title: String -
The severity of the notice.
Declaration
Swift
public var severity: NoticeSeverity -
Detailed descriptions of the notice.
Declaration
Swift
public var details: [IndoorRouteNoticeDetails] -
Creates a new instance.
Declaration
Swift
public init(code: IndoorRouteNoticeCode, title: String = "", severity: NoticeSeverity = NoticeSeverity.info, details: [IndoorRouteNoticeDetails] = [])