CheckInAck

@Serializable
data class CheckInAck(val status: Boolean) : BleDeviceRequest

Represents an acknowledgment for a check-in event in the BLE Satellite Protocol by Tinno.

This class encapsulates a response to a check-in message, confirming whether the status update was successfully received and processed by the system. This is internally used to send an acknowledgment to the device.

Constructors

Link copied to clipboard
constructor(status: Boolean)

Properties

Link copied to clipboard

The operation code that identifies the type of request.

Link copied to clipboard

Boolean indicating whether the check-in event was successfully acknowledged (true) or not (false).