This interface shows the structure of a user
export interface User { id: string; created_at: string; updated_at: string; deleted_at?: string; email: string; first_name: string; last_name: string; phone: string; identity_document: string; identity_providers: Identityprovider[]; is_phone_verified: boolean; is_guest: boolean;}
Generated using TypeDoc
This interface shows the structure of a user