Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Model/CheckoutFormPaymentProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand All @@ -58,6 +59,7 @@ public static function getAllowableEnumValues()
self::P24,
self::PAYU,
self::OFFLINE,
self::EPT,
];
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/Model/CheckoutFormPaymentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -60,6 +61,7 @@ public static function getAllowableEnumValues()
self::WIRE_TRANSFER,
self::ONLINE,
self::SPLIT_PAYMENT,
self::EXTENDED_TERM,
];
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Model/CheckoutFormStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down