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