File "OnboardingStatus.php"
Full Path: /home/cananyalcin/public_html/core/lib/mollie/src/Types/OnboardingStatus.php
File size: 421 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Mollie\Api\Types;
class OnboardingStatus
{
/**
* The onboarding is not completed and the merchant needs to provide (more) information
*/
const NEEDS_DATA = 'needs-data';
/**
* The merchant provided all information and Mollie needs to check this
*/
const IN_REVIEW = 'in-review';
/**
* The onboarding is completed
*/
const COMPLETED = 'completed';
}