Files
InfiniteAPI/src/WAUSync/USyncUser.ts
T
2025-07-17 13:54:17 +03:00

33 lines
432 B
TypeScript

export class USyncUser {
id?: string
lid?: string
phone?: string
type?: string
personaId?: string
withId(id: string) {
this.id = id
return this
}
withLid(lid: string) {
this.lid = lid
return this
}
withPhone(phone: string) {
this.phone = phone
return this
}
withType(type: string) {
this.type = type
return this
}
withPersonaId(personaId: string) {
this.personaId = personaId
return this
}
}