Skip to content

Commit

Permalink
feat/Adding new payment methods notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
vifer committed Oct 3, 2024
1 parent 3f0774d commit 6e29d1f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Notifications/Entities/Shared/AvailablePaymentMethods.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
* @method static AvailablePaymentMethods Card()
* @method static AvailablePaymentMethods GooglePay()
* @method static AvailablePaymentMethods Ideal()
* @method static AvailablePaymentMethods Offline()
* @method static AvailablePaymentMethods Paypal()
* @method static AvailablePaymentMethods Unknown()
* @method static AvailablePaymentMethods WireTransfer()
*/
final class AvailablePaymentMethods extends PaddleEnum
{
Expand All @@ -30,5 +33,8 @@ final class AvailablePaymentMethods extends PaddleEnum
private const Card = 'card';
private const GooglePay = 'google_pay';
private const Ideal = 'ideal';
private const Offline = 'offline';
private const Paypal = 'paypal';
private const Unknown = 'unknown';
private const WireTransfer = 'wire_transfer';
}

0 comments on commit 6e29d1f

Please sign in to comment.