@baileys-md/baileys
Version:
Baileys WhatsApp API
25 lines (23 loc) • 396 B
JavaScript
//========================================//
export 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;
}
}