Spaces:
Runtime error
Runtime error
| import { ApiProperty } from '@nestjs/swagger'; | |
| import { LimitOffsetParams } from '@waha/structures/pagination.dto'; | |
| export class LidToPhoneNumber { | |
| ({ | |
| description: 'Linked ID for the user', | |
| example: '1111111@lid', | |
| }) | |
| lid?: string; | |
| ({ | |
| description: 'Phone number (chat id) for the user', | |
| example: '3333333@c.us', | |
| }) | |
| pn?: string; | |
| } | |
| export class LidsListQueryParams extends LimitOffsetParams { | |
| limit?: number = 100; | |
| offset?: number = 0; | |
| } | |