mangopay2-nodejs-sdk-testing
Version:
Mangopay Node.js SDK for NPM testing purposes
21 lines • 477 B
JavaScript
/**
* UBO declaration possible status enumeration.
*/
module.exports = {
/**
* When the UBO declaration was created
*/
Created: 'CREATED',
/**
* When validation has been requested for the UBO declaration
*/
ValidationAsked: 'VALIDATION_ASKED',
/**
* When the UBO declaration was validated
*/
Validated: 'VALIDATED',
/**
* When the UBO declaration was refused
*/
Refused: 'REFUSED'
};