waha / src /structures /calls.dto.ts
NitinBot002's picture
Upload 384 files
4327358 verified
/**
* 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 {
@CallIdProperty()
id: string;
@ChatIdProperty()
from?: string;
timestamp: number;
isVideo: boolean;
isGroup: boolean;
}