A fully-prepared webhook delivery request handed to a
PaperTiger.WebhookDelivery.Adapter.
PaperTiger has already JSON-encoded the event, computed the Stripe-compatible HMAC signature, and built the header list. An adapter has everything required to deliver (or durably enqueue) the webhook without re-encoding or re-signing.
Fields:
:url— destination URL of the registered webhook endpoint.:payload— the exact JSON byte string that was signed. Send this verbatim; re-encoding the event would invalidate the signature.:headers— the full header list, includingStripe-Signature,Content-Type, andUser-Agent.:signature_header— thet=...,v1=...value (also present in:headers), exposed separately for convenience.:timestamp— the Unix timestamp used in the signed content.:event— the source PaperTiger event map.:webhook— the source webhook-endpoint map (:id,:url,:secret, ...).:namespace— the PaperTiger sandbox/tenant namespace captured when delivery was queued. Adapters that persist work can use this to retain tenant context outside the delivery task.