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
:
PaymentMethodStatus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mollie\Api\Types; class PaymentMethodStatus { /** * The payment method is activated and ready for use. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const ACTIVATED = "activated"; /** * Mollie is waiting for you to finish onboarding in the Merchant Dashboard before * the payment method can be activated. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const PENDING_BOARDING = "pending-boarding"; /** * Mollie needs to review your request for this payment method before it can be activated. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const PENDING_REVIEW = "pending-review"; /** * Activation of this payment method relies on you taking action with an external party, * for example signing up with PayPal or a giftcard issuer. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const PENDING_EXTERNAL = "pending-external"; /** * Your request for this payment method was rejected. * Whenever Mollie rejects such a request, you will always be informed via email. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const REJECTED = "rejected"; /** * This payment method was not requested. * * @link https://docs.mollie.com/reference/v2/methods-api/get-method#parameters */ const NOT_REQUESTED = null; }