This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modelTypes/IWebhook.ts

15 lines
271 B
TypeScript

import type {IAbstract} from './IAbstract'
import type {IUser} from '@/modelTypes/IUser'
export interface IWebhook extends IAbstract {
id: number
projectId: number
secret: string
targetUrl: string
events: string[]
createdBy: IUser
created: Date
updated: Date
}