File size: 352 Bytes
4327358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { ApiParam } from '@nestjs/swagger';

export const ChatIdApiParam = ApiParam({
  name: 'chatId',
  required: true,
  type: 'string',
  description: 'Chat ID',
  example: '123456789@c.us',
});

export const GroupIdApiParam = ApiParam({
  name: 'id',
  required: true,
  type: 'string',
  description: 'Group ID',
  example: '123123123@g.us',
});