Newer
Older
gnexus-auth-client-php / src / DTO / VerifiedWebhook.php
@Eugene Sukhodolskiy Eugene Sukhodolskiy 13 hours ago 394 bytes Initial auth client package scaffold
<?php

declare(strict_types=1);

namespace GNexus\GAuth\DTO;

final readonly class VerifiedWebhook
{
    /**
     * @param array<string, string> $normalizedHeaders
     */
    public function __construct(
        public string $rawBody,
        public array $normalizedHeaders,
        public ?string $signatureId = null,
        public ?\DateTimeImmutable $verifiedAt = null,
    ) {
    }
}