diff --git a/src/Model/CheckoutFormPaymentProvider.php b/src/Model/CheckoutFormPaymentProvider.php index 8184316..c02d361 100644 --- a/src/Model/CheckoutFormPaymentProvider.php +++ b/src/Model/CheckoutFormPaymentProvider.php @@ -47,7 +47,8 @@ class CheckoutFormPaymentProvider const P24 = 'P24'; const PAYU = 'PAYU'; const OFFLINE = 'OFFLINE'; - + const EPT = 'EPT'; + /** * Gets allowable values of the enum * @return string[] @@ -58,6 +59,7 @@ public static function getAllowableEnumValues() self::P24, self::PAYU, self::OFFLINE, + self::EPT, ]; } } diff --git a/src/Model/CheckoutFormPaymentType.php b/src/Model/CheckoutFormPaymentType.php index cbca3e8..604add2 100644 --- a/src/Model/CheckoutFormPaymentType.php +++ b/src/Model/CheckoutFormPaymentType.php @@ -48,6 +48,7 @@ class CheckoutFormPaymentType const WIRE_TRANSFER = 'WIRE_TRANSFER'; const ONLINE = 'ONLINE'; const SPLIT_PAYMENT = 'SPLIT_PAYMENT'; + const EXTENDED_TERM = 'EXTENDED_TERM'; /** * Gets allowable values of the enum @@ -60,6 +61,7 @@ public static function getAllowableEnumValues() self::WIRE_TRANSFER, self::ONLINE, self::SPLIT_PAYMENT, + self::EXTENDED_TERM, ]; } } diff --git a/src/Model/CheckoutFormStatus.php b/src/Model/CheckoutFormStatus.php index 58fa3b8..f044c85 100644 --- a/src/Model/CheckoutFormStatus.php +++ b/src/Model/CheckoutFormStatus.php @@ -48,7 +48,7 @@ class CheckoutFormStatus const FILLED_IN = 'FILLED_IN'; const READY_FOR_PROCESSING = 'READY_FOR_PROCESSING'; const CANCELLED = 'CANCELLED'; - + /** * Gets allowable values of the enum * @return string[]