Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
mollie
/
src
/
Types
:
ProfileStatus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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'; }