BLE_ANCS_DecodeNtfyAttrs_T
C
typedef struct
{
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 | Notification attribute bitmask. It's used to indicate whether the following filed is enabled or not. |
| ntfyId | Notification UID. |
| appId | Valid if App Identifier is enabled. |
| p_title | Valid if Title is enabled. |
| p_subtitle | Valid if Sub Title is enabled. |
| p_msg | Valid if Message is enabled. |
| msgSize | Valid if Message Size is enabled. |
| date | Valid if Date is enabled. |
| positiveAction | Valid if Positive Action is enabled. |
| negativeAction | Valid if Negative Action is enabled. |
