cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 330 B
TypeScript
import { EWebhookMethod, EWebhookType } from '../../..';
import { IPayioWebhook } from '../interfaces';
export declare class PayioWebhookEntity implements IPayioWebhook {
id: string;
method: EWebhookMethod;
type: EWebhookType;
url: string;
constructor(data?: Partial<PayioWebhookEntity>);
response: any;
}