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 #72

Closed
wants to merge 3 commits into from
Closed

Conversation

davidgrayston-paddle
Copy link
Contributor

@davidgrayston-paddle davidgrayston-paddle commented Sep 13, 2024

Added

Paddle\SDK\Notifications\Notification

Subtypes added in #73

Usage

use Paddle\SDK\Notifications\Notification;

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

if ($event instanceof TransactionUpdated) {
    $transactionId = $event->transaction->id;
}

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

Superseded by #74

@vifer vifer deleted the feat/webhook-types 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