File "ProfileStatus.php"
Full Path: /home/cananyalcin/public_html/core/lib/mollie/src/Types/ProfileStatus.php
File size: 490 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Mollie\Api\Types;
class ProfileStatus
{
/**
* The profile has not been verified yet and can only be used to create test payments.
*/
const STATUS_UNVERIFIED = 'unverified';
/**
* The profile has been verified and can be used to create live payments and test payments.
*/
const STATUS_VERIFIED = 'verified';
/**
* The profile is blocked and can thus no longer be used or changed.
*/
const STATUS_BLOCKED = 'blocked';
}