33 lines
432 B
TypeScript
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
|
|
}
|
|
}
|