braintree-web/unionpay

Members

(static) VERSION :string

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

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 (createErr, unionpayInstance) {
  if (createErr) {
    console.error(createErr);
    return;
  }
  // ...
});