mangopay2-nodejs-sdk
Version:
Mangopay Node.js SDK
17 lines • 344 B
JavaScript
/**
* Enumeration of possible statuses of a declared UBO.
*/
module.exports = {
/**
* When declaration of a UBO was created
*/
Created: 'CREATED',
/**
* When declaration of a UBO was validated
*/
Validated: 'VALIDATED',
/**
* When declaration of a UBO was refused
*/
Refused: 'REFUSED'
};