Variable BLEGattSessionEventSchemaConst
BLEGattSessionEventSchema: TUnion<
[
TObject<
{
mac: TOptional<TString>;
session_id: TString;
type: TLiteral<"gatt_connected">;
},
>,
TObject<
{
data: TString;
session_id: TString;
type: TLiteral<"gatt_data">;
uuid: TString;
},
>,
TObject<
{
reason: TOptional<TString>;
session_id: TString;
type: TLiteral<"gatt_disconnected">;
},
>,
TObject<
{
error: TOptional<TString>;
session_id: TString;
type: TLiteral<"gatt_error">;
},
>,
],
> = ...
Gateway → server GATT session lifecycle and data frames.