wppconnect-api / dist /api /model /ack.d.ts
AUXteam's picture
Upload folder using huggingface_hub
9844ee9 verified
import { Id } from './id';
import { AckType } from './enum';
export interface Ack {
id: Id;
body: string;
type: string;
t: number;
subtype: any;
notifyName: string;
from: string;
to: string;
self: string;
ack: AckType;
invis: boolean;
isNewMsg: boolean;
star: boolean;
loc: string;
lat: number;
lng: number;
mentionedJidList: any[];
isForwarded: boolean;
labels: any[];
ephemeralStartTimestamp: number;
}