Setting priority for android pushes

It is possible to set the priority for android pushes in the dashboard

and in the underlying plugin

but it is not available as an option in the AndroidNotificationConfig
http://docs.ionic.io/api/endpoints/push.html#model-androidnotificationconfig


AndroidNotificationConfig
collapse_key
string

Identifies a group of messages that can be collapsed, so that only the last message gets sent when delivery can be resumed.
content_available
integer
(int32)

Determines if the message should be delivered as a silent notification. A value of 1 will cause the message to be delivered as a background notification, which will not display a notification to the user, but the application can still process the notification.
data
object

Raw data sent to GCM
delay_while_idle
boolean

When this parameter is set to true, it indicates that the message should not be sent until the device becomes active.
icon
string

Filename of the Icon to display with the notification
image
string

Filename or URI of an image file to display with the notification
message
string

Message Text
payload
object

Custom data
sound
string

Filename of audio file to play when a notification is received. Setting this to default will use the default Android device notification sound
tag
string

Indicates whether each notification message results in a new entry on the notification center on Android. If not set, each request creates a new notification. If set, and a notification with the same tag is already being shown, the new notification replaces the existing one in notification center.
template_defaults
object

Default values to for template variables when a corresponding user does not have a value
time_to_live
integer
(int32)

This parameter specifies how long (in seconds) the message should be kept in GCM storage if the device is offline
title
string

Notification Title

Is there a way to specify the priority of android notifications through the API?

Shankari