@whiskeysockets/baileys
Version:
A WebSockets library for interacting with WhatsApp Web
27 lines (26 loc) • 538 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.USyncUser = void 0;
class USyncUser {
withId(id) {
this.id = id;
return this;
}
withLid(lid) {
this.lid = lid;
return this;
}
withPhone(phone) {
this.phone = phone;
return this;
}
withType(type) {
this.type = type;
return this;
}
withPersonaId(personaId) {
this.personaId = personaId;
return this;
}
}
exports.USyncUser = USyncUser;
;