PluginProbe
MONEI Payments for WooCommerce / 4.1.0
MONEI Payments for WooCommerce v4.1.0
7.3.3 7.3.2 7.3.1 7.3.0 7.2.4 7.2.3 7.2.2 7.2.0 7.2.1 7.1.3 2.1.0 3.0.0 3.1.0 3.1.1 4.0.0 4.1.0 4.1.1 4.2.0 4.2.1 5.0 5.1.0 5.1.1 5.1.2 5.2.2 5.2.3 All 87 releases
monei / includes / lib / Model / PaymentTransactionType.php

PaymentTransactionType.php in MONEI Payments for WooCommerce 4.1.0, at includes/lib/Model/PaymentTransactionType.php

64 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * PaymentTransactionType
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 * PaymentTransactionType Class Doc Comment
35 *
36 * @category Class
37 * @description Controls when the funds will be captured. - &#x60;SALE&#x60; - **Default**. MONEI automatically captures funds when the customer authorizes the payment. - &#x60;AUTH&#x60; - Place a hold on the funds when the customer authorizes the payment, but don’t capture the funds until later.
38 * @package OpenAPI\Client
39 * @author OpenAPI Generator team
40 * @link https://openapi-generator.tech
41 */
42 class PaymentTransactionType
43 {
44 /**
45 * Possible values of this enum
46 */
47 const SALE = 'SALE';
48 const AUTH = 'AUTH';
49
50 /**
51 * Gets allowable values of the enum
52 * @return string[]
53 */
54 public static function getAllowableEnumValues()
55 {
56 return [
57 self::SALE,
58 self::AUTH,
59 ];
60 }
61 }
62
63
64