package com.xuqm.im.model;
import com.fasterxml.jackson.databind.JsonNode;
public record WebhookCallbackEnvelope(
String callbackId,
String callbackType,
String callbackEvent,
long requestTime,
JsonNode payload,
String signature,
String appKey
) {}