BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
paddlehq
/
paddle-php-sdk
/
src
/
Resources
/
Notifications
📤 Upload
📝 New File
📁 New Folder
Close
Editing: NotificationsClient.php
<?php declare(strict_types=1); /** * |------ * | ! Generated code ! * | Altering this code will result in changes being overwritten | * |-------------------------------------------------------------|. */ namespace Paddle\SDK\Resources\Notifications; use Paddle\SDK\Client; use Paddle\SDK\Entities\Collections\NotificationCollection; use Paddle\SDK\Entities\Collections\Paginator; use Paddle\SDK\Entities\Notification; use Paddle\SDK\Exceptions\ApiError; use Paddle\SDK\Exceptions\SdkExceptions\MalformedResponse; use Paddle\SDK\Resources\Notifications\Operations\ListNotifications; use Paddle\SDK\ResponseParser; class NotificationsClient { public function __construct( private readonly Client $client, ) { } /** * @throws ApiError On a generic API error * @throws MalformedResponse If the API response was not parsable */ public function list(ListNotifications $listOperation = new ListNotifications()): NotificationCollection { $parser = new ResponseParser( $this->client->getRaw('/notifications', $listOperation), ); return NotificationCollection::from( $parser->getData(), new Paginator($this->client, $parser->getPagination(), NotificationCollection::class), ); } /** * @throws ApiError On a generic API error * @throws MalformedResponse If the API response was not parsable */ public function get(string $id): Notification { $parser = new ResponseParser( $this->client->getRaw("/notifications/{$id}"), ); return Notification::from($parser->getData()); } /** * @throws ApiError On a generic API error * @throws MalformedResponse If the API response was not parsable */ public function replay(string $id): string { $parser = new ResponseParser( $this->client->postRaw("/notifications/{$id}/replay"), ); $data = $parser->getData(); return $data['notification_id'] ?? ''; } }
Save
Cancel