@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
19 lines • 394 B
TypeScript
export type WebhookMessage = {
/**
* Http Headers as key value pairs
*/
headers: Record<string, string>;
/**
* Http Body as Json
*/
body?: Record<string, any>;
/**
* The timestamp when the message was created
*/
timestamp?: string;
/**
* Path of the message
*/
path: string;
};
//# sourceMappingURL=WebhookMessage.d.ts.map