PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
mollie
/
mollie-api-php
/
src
/
Types
<?php namespace Mollie\Api\Types; class PaymentStatus { /** * The payment has just been created, no action has happened on it yet. */ const STATUS_OPEN = "open"; /** * The payment has just been started, no final confirmation yet. */ const STATUS_PENDING = "pending"; /** * The payment is authorized, but captures still need to be created in order to receive the money. * * This is currently only possible for Klarna Pay later and Klarna Slice it. Payments with these payment methods can * only be created with the Orders API. You should create a Shipment to trigger the capture to receive the money. * * @see https://docs.mollie.com/reference/v2/shipments-api/create-shipment */ const STATUS_AUTHORIZED = "authorized"; /** * The customer has canceled the payment. */ const STATUS_CANCELED = "canceled"; /** * The payment has expired due to inaction of the customer. */ const STATUS_EXPIRED = "expired"; /** * The payment has been paid. */ const STATUS_PAID = "paid"; /** * The payment has failed. */ const STATUS_FAILED = "failed"; }
[-] 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]