AccessLogItem

public struct AccessLogItem : Codable, Equatable

Logs of when someone tried to get access. This sturcture is used for defining details about the access logs like the time at which it was generated, whether the access was granted or not, cardID and keySetID used to access the BluPOINT device. It also provides the MAC address of the BluPOINT device.

  • The time at which the some tried to access the BluPOINT device

    Declaration

    Swift

    public var timestamp: UInt64
  • The status of the access to the BluPOINT device

    Declaration

    Swift

    public var accessStatus: AccessStatus
  • The card ID which accessed the BluPOINT device

    Declaration

    Swift

    public var cardID: String
  • The keySetID used to access the BluPOINT device

    Declaration

    Swift

    public var keySetID: String
  • The MAC address of the BluPOINT device

    Declaration

    Swift

    public var macAddress: String
  • Declaration

    Swift

    public init(timestamp: UInt64, accessStatus: AccessStatus, cardId: String, keySetId: String, macId: String)