Skip to content

Commit

Permalink
docs: Fixed ID type definition of Contact model (#2285)
Browse files Browse the repository at this point in the history
  • Loading branch information
gekkedev authored Aug 5, 2024
1 parent 8f7ec63 commit 12ddccd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/api/model/contact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@
* along with WPPConnect. If not, see <https://www.gnu.org/licenses/>.
*/

import { Wid } from './wid';
import { ProfilePicThumbObj } from './profile-pic-thumb';

/**
* Data info of contact
*/
export interface Contact {
formattedName: string;
id: Wid;
id: string;
isBusiness: boolean;
isEnterprise: boolean;
isHighLevelVerified: any;
Expand Down

0 comments on commit 12ddccd

Please sign in to comment.