24 lines
473 B
PHP
24 lines
473 B
PHP
<?php
|
|
|
|
/**
|
|
* OpenPayU Standard Library
|
|
*
|
|
* @copyright Copyright (c) PayU
|
|
* http://www.payu.com
|
|
* http://developers.payu.com
|
|
*/
|
|
|
|
/**
|
|
* Class OpenPayuOrderStatus
|
|
*/
|
|
abstract class OpenPayuOrderStatus
|
|
{
|
|
const STATUS_NEW = 'NEW';
|
|
const STATUS_PENDING = 'PENDING';
|
|
const STATUS_CANCELED = 'CANCELED';
|
|
const STATUS_REJECTED = 'REJECTED';
|
|
const STATUS_COMPLETED = 'COMPLETED';
|
|
const STATUS_WAITING_FOR_CONFIRMATION = 'WAITING_FOR_CONFIRMATION';
|
|
|
|
}
|