import { tags } from "typia"; import { IPaymentHistory } from "./IPaymentHistory"; import { IPaymentSource } from "./IPaymentSource"; export interface IPaymentWebhook { id: string & tags.Format<"uuid">; source: IPaymentSource; previous: IPaymentWebhook.IHistory; current: IPaymentWebhook.IHistory; } export declare namespace IPaymentWebhook { type IHistory = Omit; }