canHandlePushMessage
Verify if push message can be handled
When your application receives a push message, you can verify whether it handleable by the Onegini Cordova Plugin.
onegini.mobileAuth.push.canHandlePushMessage
This function verifies if push message can be handled.
- Requires a pushData in form of a JSON object
 - Supplied JSON object should contain the 
og_transaction_idandog_profile_identry in the root orcontentkey. Here are examples of accepted JSON object. 
Example 1:
{
  __...
  "og_transaction_id" : "223423",
  "og_profile_id" : "ZX123C"
  __...
}
Example 2:
{
  __ ...
  "content" : {
    __ ...
    "og_transaction_id" : "223423",
    "og_profile_id" : "ZX123C"
    __ ...  
  }
  __ ...
}
Example usage:
if (onegini.mobileAuth.push.canHandlePushMessage(data.additionalData)) { 
    onegini.mobileAuth.push.handlePushMessage(data.additionalData)
}