Interface HadawiWebhookPayload

interface HadawiWebhookPayload {
    event: WebhookEventType;
    order_id?: string;
    session_id: string;
    merchant_id: string;
    items: ItemSnapshot[];
    total_amount: number;
    currency: string;
    funded_at: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

order_id?: string
session_id: string
merchant_id: string
items: ItemSnapshot[]

Line items from the contribution session (same shape as intent itemSnapshot).

total_amount: number
currency: string
funded_at: string