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
:
InvoiceStatus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mollie\Api\Types; class InvoiceStatus { /** * The invoice is not paid yet. */ const STATUS_OPEN = "open"; /** * The invoice is paid. */ const STATUS_PAID = "paid"; /** * Payment of the invoice is overdue. */ const STATUS_OVERDUE = "overdue"; }