@periskope/baileys
Version:
WhatsApp API
23 lines • 446 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;
}
}
//# sourceMappingURL=USyncUser.js.map