PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Types
<?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; }
[-] MandateMethod.php
[edit]
[-] OrderLineStatus.php
[edit]
[+]
..
[-] OrderStatus.php
[edit]
[-] RefundStatus.php
[edit]
[-] ProfileStatus.php
[edit]
[-] PaymentMethodStatus.php
[edit]
[-] OnboardingStatus.php
[edit]
[-] SequenceType.php
[edit]
[-] PaymentStatus.php
[edit]
[-] PaymentMethod.php
[edit]
[-] InvoiceStatus.php
[edit]
[-] OrderLineType.php
[edit]
[-] SettlementStatus.php
[edit]
[-] MandateStatus.php
[edit]
[-] SubscriptionStatus.php
[edit]