payrex-js-sdk
Version:
A PayRex SDK written for NodeJS
18 lines (15 loc) • 376 B
text/typescript
import { WebhookResource } from './types.cjs';
declare class WebhookDto {
id: string;
resource: string;
secret_key: string;
status: string;
description: string;
livemode: boolean;
url: string;
events: string[];
created_at: number;
updated_at: number;
constructor(apiResponse: WebhookResource);
}
export { WebhookDto as default };