| 1 |
<?php |
| 2 |
/** |
| 3 |
* PaymentStatus |
| 4 |
* |
| 5 |
* PHP version 5 |
| 6 |
* |
| 7 |
* @category Class |
| 8 |
* @package OpenAPI\Client |
| 9 |
* @author OpenAPI Generator team |
| 10 |
* @link https://openapi-generator.tech |
| 11 |
*/ |
| 12 |
|
| 13 |
/** |
| 14 |
* MONEI API v1 |
| 15 |
* |
| 16 |
* The MONEI API is organized around [REST](https://en.wikipedia.org/wiki/Representational_State_Transfer). Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. |
| 17 |
* |
| 18 |
* The version of the OpenAPI document: 1.0.0 |
| 19 |
* |
| 20 |
* Generated by: https://openapi-generator.tech |
| 21 |
* OpenAPI Generator version: 4.3.1 |
| 22 |
*/ |
| 23 |
|
| 24 |
/** |
| 25 |
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 26 |
* https://openapi-generator.tech |
| 27 |
* Do not edit the class manually. |
| 28 |
*/ |
| 29 |
|
| 30 |
namespace OpenAPI\Client\Model; |
| 31 |
use \OpenAPI\Client\ObjectSerializer; |
| 32 |
|
| 33 |
/** |
| 34 |
* PaymentStatus Class Doc Comment |
| 35 |
* |
| 36 |
* @category Class |
| 37 |
* @description The status of the payment. |
| 38 |
* @package OpenAPI\Client |
| 39 |
* @author OpenAPI Generator team |
| 40 |
* @link https://openapi-generator.tech |
| 41 |
*/ |
| 42 |
class PaymentStatus |
| 43 |
{ |
| 44 |
/** |
| 45 |
* Possible values of this enum |
| 46 |
*/ |
| 47 |
const SUCCEEDED = 'SUCCEEDED'; |
| 48 |
const PENDING = 'PENDING'; |
| 49 |
const FAILED = 'FAILED'; |
| 50 |
const CANCELED = 'CANCELED'; |
| 51 |
const REFUNDED = 'REFUNDED'; |
| 52 |
const PARTIALLY_REFUNDED = 'PARTIALLY_REFUNDED'; |
| 53 |
const AUTHORIZED = 'AUTHORIZED'; |
| 54 |
const EXPIRED = 'EXPIRED'; |
| 55 |
|
| 56 |
/** |
| 57 |
* Gets allowable values of the enum |
| 58 |
* @return string[] |
| 59 |
*/ |
| 60 |
public static function getAllowableEnumValues() |
| 61 |
{ |
| 62 |
return [ |
| 63 |
self::SUCCEEDED, |
| 64 |
self::PENDING, |
| 65 |
self::FAILED, |
| 66 |
self::CANCELED, |
| 67 |
self::REFUNDED, |
| 68 |
self::PARTIALLY_REFUNDED, |
| 69 |
self::AUTHORIZED, |
| 70 |
self::EXPIRED, |
| 71 |
]; |
| 72 |
} |
| 73 |
} |
| 74 |
|
| 75 |
|
| 76 |
|