The documentation for the Ionic Native packages isn't really a full tutorial for implementing it. You need to have done it a few times to learn what it means.
Go to the main Ionic Native community page and follow the generic setup instructions that all packages should have done:
The first line of your snippet goes at the top
The rest of this is just a rough outline of the API, but not a full guide to its use.
Often you can find more information by clicking through to the github repo.
From my investigation it has revealed that you need to install with an app_id variable:
cordova plugin add cordova-plugin-gubnoi-alipay --variable APP_ID=[your AppId]
Which means you need to sign up for a developer account with AliPay and have an app created on their platform.
The documentation also links out to this page:
Which has details for all of the types of parameters you can use to generate an order on their side which can be turned into a url like this:
var payInfo = "app_id=2015052600090779&biz_content=%7B%22timeout_express%22%3A%2230m%22%2C%22product_code%22%3A%22QUICK_MSECURITY_PAY%22%2C%22total_amount%22%3A%220.01%22%2C%22subject%22%3A%221%22%2C%22body%22%3A%22%E6%88%91%E6%98%AF%E6%B5%8B%E8%AF%95%E6%95%B0%E6%8D%AE%22%2C%22out_trade_no%22%3A%22IQJZSRC1YMQB5HU%22%7D&charset=utf-8&format=json&method=alipay.trade.app.pay¬ify_url=http%3A%2F%2Fdomain.merchant.com%2Fpayment_notify&sign_type=RSA2×tamp=2016-08-25%2020%3A26%3A31&version=1.0&sign=cYmuUnKi5QdBsoZEAbMXVMmRWjsuUj%2By48A2DvWAVVBuYkiBj13CFDHu2vZQvmOfkjE0YqCUQE04kqm9Xg3tIX8tPeIGIFtsIyp%2FM45w1ZsDOiduBbduGfRo1XRsvAyVAv2hCrBLLrDI5Vi7uZZ77Lo5J0PpUUWwyQGt0M4cj8g%3D";
And then finally passed into the plugin to manage the payment process.
Also, it seems that you might have some success by contacting AliPay for specific questions.
[Update] How To Get An App ID
On this page it has these instructions:

So you need to go to the signup page and register a normal account and then find the option to upgrade it to a developer account.
After that you can register an app with the platform to get the id.