Members
(static) VERSION :string
The current version of the SDK, i.e. 3.112.0
.
- Source:
Methods
(static) create(options) → {Promise|void}
Parameters:
Name | Type | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
Creation options: Properties
|
- Source:
Examples
braintree.fastlane.create({
client: clientInstance,
deviceData: dataCollectorInstance
}).then(function (fastlaneInstance) {
// fastlaneInstance is ready to create an identity instance.
identity = fastlaneInstance.identity
}).catch(function (createErr) {
console.error('Error creating fastlane instance', createErr);
});
braintree.fastlane.create({
client: clientInstance,
deviceData: dataCollectorInstance
}).then(function (fastlaneInstance) {
// fastlaneInstance is ready to create an identity instance.
identity = fastlaneInstance.identity
}).catch(function (createErr) {
console.error('Error creating fastlane instance', createErr);
});