The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/definition/IImportUser.ts

19 lines
435 B

export interface IImportUser {
// #ToDo: Remove this _id, as it isn't part of the imported data
_id?: string;
username?: string;
emails: Array<string>;
importIds: Array<string>;
name?: string;
utcOffset?: number;
avatarUrl?: string;
deleted?: boolean;
statusText?: string;
roles?: Array<string>;
type: 'user' | 'bot';
bio?: string;
services?: Record<string, Record<string, any>>;
customFields?: Record<string, any>;
}