import { UserContact } from "./user-contact.data.model"; export declare class User { /** * Unique user identifier that you use to identify your user. */ userId: string; /** * Your user's full name. * * Default: Random avatar name. */ name?: string; /** * Your user's display picture URL. * * Default: Random avatar image. */ photoUrl?: string; /** * This is required if you want us to send email or slack notifications * to users when they add comments and tag their co-workers. */ email?: string; /** * This will help us show a drop down when a user wants to tag their co-workers in a comment. */ contacts?: UserContact[]; /** * The product plan your user is on. */ plan?: string; /** * It could be a domain name or any identifier you use to cluster a group of users who work together. */ groupId?: string; /** * Auto generated unique user id that is linked with your app's user ID. * This is needed by us for internal processing. */ userSnippylyId?: string; /** * A random color is assigned to the user for the current session. * This is the color on the avatar border and live cursor, if these features are enabled. */ color?: string; /** * User type. * */ type?: string; isAdmin?: boolean; /** * Readonly user */ isReadOnly?: boolean; /** * Anonymous user can only view the comments */ isAnonymous?: boolean; }