braintree-web/unionpay

Members

(static) VERSION :string

The current version of the SDK, i.e. 3.0.0-beta.8.

Source:

Methods

(static) create(options)

Parameters:
Name Type Description
options object

Object containing configuration options for this module.

Properties
Name Type Description
client Client

A Client instance.

Source:
Example
braintree.unionpay.create({ client: clientInstance }, function (err, unionpayInstance) {
  if (err) {
    console.error(err);
    return;
  }
  // ...
});