Spaces:
Runtime error
Runtime error
| import { ApiProperty } from '@nestjs/swagger'; | |
| import { | |
| ChatIdProperty, | |
| MessageIdOnlyProperty, | |
| } from '@waha/structures/properties.dto'; | |
| export class ReplyToMessage { | |
| () | |
| id: string; | |
| () | |
| participant?: string; | |
| ({ | |
| example: 'Hello!', | |
| }) | |
| body?: string; | |
| ({ | |
| description: "Raw data from reply's message", | |
| }) | |
| _data?: any; | |
| } | |