UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

17 lines (15 loc) 420 B
interface SetPresenceRequest { instanceName?: string; presence: "unavailable" | "available"; } interface SetPresenceData { instance: string; presence: string; } interface SetPresenceResponse { error: boolean; message: string; data: SetPresenceData; } type SetPresenceOptions = SetPresenceRequest; export type { SetPresenceData, SetPresenceOptions, SetPresenceRequest, SetPresenceResponse };