export interface IdentityProfile { _id: string; displayName: string; displayImageURL: string; } export interface Identity { id: string; address: string; session?: string | null; user?: string | null; allows?: Array; token?: string | null; profile?: IdentityProfile; account?: string; accountProfile?: IdentityProfile; member?: string; memberProfile?: IdentityProfile; }