Spaces:
Runtime error
Runtime error
File size: 494 Bytes
4327358 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { ApiProperty } from '@nestjs/swagger';
import { LimitOffsetParams } from '@waha/structures/pagination.dto';
export class LidToPhoneNumber {
@ApiProperty({
description: 'Linked ID for the user',
example: '1111111@lid',
})
lid?: string;
@ApiProperty({
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;
}
|