ManufacturerDataAppleHomeKitEncryptedNotification

@available(swift 4.0)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class ManufacturerDataAppleHomeKitEncryptedNotification : ManufacturerData
extension ManufacturerDataAppleHomeKitEncryptedNotification: Hashable
extension ManufacturerDataAppleHomeKitEncryptedNotification: Equatable

HAP BLE Encrypted Notification Advertisement Format Manufacturer Specific Data

This advertisment must only be used to notify changes in characteristic values that are configured for Broadcasted Events.

  • Manufacturer

    Declaration

    Swift

    public var manufacturer: CompanyIdentifier
  • Data

    Declaration

    Swift

    public var specificData: Data?
  • Sub Type

    Declaration

    Swift

    private(set) public var subType: UInt8 { get }
  • Accessory Advertising Identifier

    Declaration

    Swift

    private(set) public var accessoryIdentifier: MACAddress { get }
  • Global State Number

    Represents a change in the value of any of the characteristics that supports Disconnected Events.

    Declaration

    Swift

    private(set) public var globalState: UInt16 { get }
  • Characteristic Instance id

    ID of the Characteristic value included in the notification

    Declaration

    Swift

    private(set) public var characteristicInstance: UInt16 { get }
  • Auth Tag

    Declaration

    Swift

    private(set) public var authTag: UInt32 { get }
  • Creates an Apple HomeKit Manufacturer Specific Data Class

    Declaration

    Swift

    public init(subType: UInt8,
                accessoryIdentifier: MACAddress,
                globalState: UInt16,
                characteristicInstance: UInt16,
                authTag: UInt32)

    Parameters

    subType

    Sub Type

    accessoryIdentifier

    Accessory Advertising Identifier

    globalState

    Global State Number

    characteristicInstance

    Characteristic Instance id

    authTag

    Auth Tag

  • Undocumented

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Decodes Apple HomeKit Manufacturer Specific Data

    Declaration

    Swift

    public class func decode(with data: Data) -> Result<ManufacturerDataAppleHomeKitEncryptedNotification, BluetoothDecodeError>

    Parameters

    data

    ManufacturerData Data

    Return Value

    ManufacturerData Result

  • Encodes Apple HomeKit Manufacturer Specific Data

    Declaration

    Swift

    public func encode() -> Result<Data, BluetoothEncodeError>

    Return Value

    ManufacturerData Result

  • Encodes this value into the given encoder.

    If the value fails to encode anything, encoder will encode an empty keyed container in its place.

    This function throws an error if any values are invalid for the given encoder’s format.

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws

    Parameters

    encoder

    The encoder to write data to.

  • Hashes the essential components of this value by feeding them into the given hasher.

    Implement this method to conform to the Hashable protocol. The components used for hashing must be the same as the components compared in your type’s == operator implementation. Call hasher.combine(_:) with each of these components.

    Important

    Never call finalize() on hasher. Doing so may become a compile-time error in the future.

    Declaration

    Swift

    public func hash(into hasher: inout Hasher)

    Parameters

    hasher

    The hasher to use when combining the components of this instance.

  • Returns a Boolean value indicating whether two values are equal.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    public static func == (lhs: ManufacturerDataAppleHomeKitEncryptedNotification, rhs: ManufacturerDataAppleHomeKitEncryptedNotification) -> Bool

    Parameters

    lhs

    A value to compare.

    rhs

    Another value to compare.