import { IEntityAttributes } from "./api";
import { Moment } from "./common";
export interface IWebhookAttributes extends IEntityAttributes {
destination: string;
created_at: Date;
updated_at: Date;
created_by: number;
sort: number;
disabled: boolean;
settings: string[];
}