AndroidNotificationConfig and IOSNotificationConfig don't have support for specifying actions

Has anybody here been using the ionic push service? I want to send a push notification with actions, and the underlying plugin supports it

but I don’t see corresponding fields in the documentation for the ionic push HTTP API.

Is anybody using ionic push in any serious way, or are all of you just rolling your own node-gcm servers?

Replying to my own answer - you need to use the data field of the AndroidNotificationConfig the one which says

Raw data sent to GCM

e.g.

{
    "tokens": ["DEVICE_TOKEN"],
    "profile": "PROFILE_TAG",
    "notification": {        "android": {
            "message": "Hello Android",
            "data": {                "actions": []            }        }
    }
}

Thanks to @ericb for clarifying!