@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
42 lines • 881 B
TypeScript
import type { WebhookMessage } from './WebhookMessage';
export type WebhookLog = {
/**
* The WebhookLog id
*/
id: string;
/**
* Request id, set when api-triggered request otherwise empty
*/
requestId?: string;
/**
* If the webhooks sends the data successfully
*/
succeeded?: boolean;
/**
* Http Status code of the webhook response
*/
responseStatus?: number;
/**
* The duration of the webhook in milli seconds
*/
duration?: number;
/**
* The account id
*/
accountId: number;
request?: WebhookMessage;
response?: WebhookMessage;
/**
* Used Api Key for the webhook
*/
apiKeyId: number;
/**
* last updated time
*/
updated: string;
/**
* Creation Date
*/
created: string;
};
//# sourceMappingURL=WebhookLog.d.ts.map