redai-automation-web-sdk
Version:
TypeScript SDK for RedAI Automation Web API - Zalo Personal automation, messaging, advanced sticker search, and bulk operations. 100% compatible with automation-web backend. v1.8.0: Added SessionProxyService for managing proxy assignments to sessions with
48 lines • 886 B
TypeScript
/**
* Undo Event Types
* 100% khớp với zalo-personal-sdk/src/models/Undo.ts
*/
/**
* Undo Content Type
*/
export interface TUndoContent {
globalMsgId: number;
cliMsgId: number;
deleteMsg: number;
srcId: number;
destId: number;
}
/**
* Undo Type
*/
export interface TUndo {
actionId: string;
msgId: string;
cliMsgId: string;
msgType: string;
uidFrom: string;
idTo: string;
dName: string;
ts: string;
status: number;
content: TUndoContent;
notify: string;
ttl: number;
userId: string;
uin: string;
cmd: number;
st: number;
at: number;
realMsgId: string;
}
/**
* Undo Class
*/
export declare class Undo {
data: TUndo;
threadId: string;
isSelf: boolean;
isGroup: boolean;
constructor(uid: string, data: TUndo, isGroup: boolean);
}
//# sourceMappingURL=undo.d.ts.map