Spaces:
Runtime error
Runtime error
| /** | |
| * Events | |
| */ | |
| import { ApiProperty } from '@nestjs/swagger'; | |
| import { ChatIdProperty } from '@waha/structures/properties.dto'; | |
| function CallIdProperty() { | |
| return ApiProperty({ | |
| description: 'Call ID', | |
| example: 'ABCDEFGABCDEFGABCDEFGABCDEFG', | |
| }); | |
| } | |
| export class CallData { | |
| () | |
| id: string; | |
| () | |
| from?: string; | |
| timestamp: number; | |
| isVideo: boolean; | |
| isGroup: boolean; | |
| } | |