AuthenticationData

public struct AuthenticationData : Hashable

Authentication data

  • Secure token to be used with other HERE services. Note that the HERE SDK itself does not require the use of tokens. Defaults to an empty string.

    Declaration

    Swift

    public var token: String
  • Expiration time in seconds as epoch time. Defaults to 0 seconds.

    Declaration

    Swift

    public var expiryTime: TimeInterval
  • Creates a new instance.

    Declaration

    Swift

    public init(token: String = "", expiryTime: TimeInterval = 0)