n8n/packages/nodes-base/nodes/Zulip/UserInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
316 B
TypeScript
Raw Normal View History

import type { IDataObject } from 'n8n-workflow';
export interface IUser {
2020-05-22 15:59:40 -07:00
client_gravatar?: boolean;
include_custom_profile_fields?: boolean;
full_name?: string;
is_admin?: boolean;
is_guest?: boolean;
profile_data?: [IDataObject];
2020-05-22 15:59:40 -07:00
email?: string;
password?: string;
short_name?: string;
role?: number;
2020-05-22 15:59:40 -07:00
}