Interface UserModel

Information about a user of Digicust

interface UserModel {
    acceptTerms?: boolean;
    city?: string;
    country?: string;
    department?: string;
    displayName?: string;
    givenName?: string;
    id?: string;
    jobTitle?: string;
    mail?: string;
    mobilePhone?: string;
    role?: "user" | "admin";
    streetAddress?: string;
    subscribeToNewsletter?: boolean;
    surname?: string;
}

Properties

acceptTerms?: boolean
city?: string
country?: string
department?: string
displayName?: string
givenName?: string
id?: string
jobTitle?: string
mail?: string
mobilePhone?: string
role?: "user" | "admin"
streetAddress?: string
subscribeToNewsletter?: boolean
surname?: string