Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface User

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;
}

Hierarchy

  • User

Index

Properties

created_at: string
deleted_at?: string
email: string
first_name: string
id: string
identity_document: string
identity_providers: Identityprovider[]
is_guest: boolean
is_phone_verified: boolean
last_name: string
phone: string
updated_at: string

Generated using TypeDoc