Webhooks
Getting started
export class ResponseEntity {
@ApiProperty()
status: boolean;
@ApiProperty({ example: 200 })
statusCode: number;
@ApiProperty({ type: String })
data: string;
@ApiProperty({ example: '2021-08-20T14:52:33.648Z' })
time: string;
constructor(data: string) {
this.status = true;
this.statusCode = 200;
this.data = data;
this.time = new Date().toISOString();
}
}Retry failed
Last updated