Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Webhook Notification Types #73

Closed
wants to merge 4 commits into from

Conversation

davidgrayston-paddle
Copy link
Contributor

Added

Paddle\SDK\Notifications\Notification and subtypes, e.g. Paddle\SDK\Notifications\Events\TransactionUpdated

Usage

use Paddle\SDK\Notifications\Notification;
use Paddle\SDK\Notifications\Notification\TransactionUpdatedNotification;

$notification = Notification::fromRequest($request);
$id = $notification->id;
$eventId = $notification->eventId;
$eventType = $notification->eventType;
$occurredAt = $notification->occurredAt;

if ($notification instanceof TransactionUpdatedNotification) {
    $transactionId = $notification->transaction->id;
}

@davidgrayston-paddle davidgrayston-paddle changed the title Feature: Webhook Notification Types feat: Webhook Notification Types Sep 13, 2024
@davidgrayston-paddle
Copy link
Contributor Author

Superseded by #74

@vifer vifer deleted the feat/webhook-notifications branch October 2, 2024 07:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant