Interface ISubUser

interface ISubUser {
    address?: string;
    email?: string;
    first_name?: string;
    language?: string;
    last_name?: string;
    last_online?: string;
    login_password?: string;
    login_username?: string;
    name?: string;
    nickname?: string;
    organization?: string;
    other_email?: OtherContact[];
    other_sms?: OtherContact[];
    phone?: string;
    point_management?: PointManagement;
    role?: string;
    session_token?: string;
    verified_email?: boolean;
    verified_sms?: boolean;
}

Implemented by

Properties

address?: string
email?: string
first_name?: string
language?: string
last_name?: string
last_online?: string
login_password?: string
login_username?: string
name?: string
nickname?: string
organization?: string
other_email?: OtherContact[]
other_sms?: OtherContact[]
phone?: string
point_management?: PointManagement
role?: string
session_token?: string
verified_email?: boolean
verified_sms?: boolean