BLE_ANCS_DecodeNtfyAttrs_T
C
typedef struct BLE_ANCS_DecodeNtfyAttrs_T
{
BLE_ANCS_NtfyAttrsMask_T bitmask;
uint32_t ntfyId;
uint8_t appId[BLE_ANCS_MAX_APPID_LEN];
uint8_t *p_title;
uint8_t *p_subtitle;
uint8_t *p_msg;
uint16_t msgSize;
uint8_t date[BLE_ANCS_MAX_DATE_LEN];
uint8_t positiveAction[BLE_ANCS_MAX_POS_ACTION_LABEL_LEN];
uint8_t negativeAction[BLE_ANCS_MAX_NEG_ACTION_LABEL_LEN];
} BLE_ANCS_DecodeNtfyAttrs_T;Description
The structure contains iOS notification attributes decoded information.
Field Documentation
| Field | Description |
|---|---|
| bitmask | Bitmask indicating which attributes are present. See BLE_ANCS_NtfyAttrsMask_T. |
| ntfyId | Unique identifier for the notification. |
| appId | App Identifier, valid if corresponding flag in bitmask is set. |
| p_title | Pointer to the Title, valid if corresponding flag in bitmask is set. |
| p_subtitle | Pointer to the Subtitle, valid if corresponding flag in bitmask is set. |
| p_msg | Pointer to the Message, valid if corresponding flag in bitmask is set. |
| msgSize | Message Size, valid if corresponding flag in bitmask is set. |
| date | Date, valid if corresponding flag in bitmask is set. |
| positiveAction | Positive Action label, valid if corresponding flag in bitmask is set. |
| negativeAction | Negative Action label, valid if corresponding flag in bitmask is set. |
