forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhook.entity.ts
More file actions
39 lines (28 loc) · 780 Bytes
/
Copy pathwebhook.entity.ts
File metadata and controls
39 lines (28 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { Entity, Column, PrimaryGeneratedColumn, CreateDateColumn, UpdateDateColumn, ManyToOne, JoinColumn } from 'typeorm';
import { Merchant } from '../merchants/merchant.entity';
@Entity('webhooks')
export class Webhook {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
merchantId: string;
@ManyToOne(() => Merchant)
@JoinColumn({ name: 'merchantId' })
merchant: Merchant;
@Column()
url: string;
@Column({ default: true })
isActive: boolean;
@Column({ nullable: true })
secret: string;
@Column({ default: 0 })
failureCount: number;
@Column({ nullable: true })
lastDeliveryAt: Date;
@Column({ nullable: true })
lastDeliveryStatus: number;
@CreateDateColumn()
createdAt: Date;
@UpdateDateColumn()
updatedAt: Date;
}