OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
aws-ses
/
vendor
/
wildbit
/
postmark-php
/
src
/
Postmark
/
Models
/
Webhooks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
HttpAuth.php
907 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
HttpHeader.php
125 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfiguration.php
4.91 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationBounceTrigger.php
1.03 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationClickTrigger.php
711 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationDeliveryTrigger.php
726 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationListingResponse.php
947 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationOpenTrigger.php
1.08 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationSpamComplaintTrigger.php
1.11 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationSubscriptionChangeTrigger.php
756 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
WebhookConfigurationTriggers.php
3.73 KB
05/19/2025 10:07:21 AM
rw-r--r--
Editing: HttpAuth.php
Close
<?php namespace Postmark\Models\Webhooks; use JsonSerializable; /** * Model describing Basic HTTP Authentication. */ class HttpAuth implements JsonSerializable { private $username; private $password; /** * Create a new HttpAuth. * * @param string $username username to use * @param string $password password to use */ public function __construct($username = null, $password = null) { $this->username = $username; $this->password = $password; } public function jsonSerialize(): array { return [ 'Username' => $this->username, 'Password' => $this->password, ]; } public function getUsername(): ?string { return $this->username; } public function getPassword(): ?string { return $this->password; } }