Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Zulip/UserInterface.ts
2025-09-08 04:48:28 +08:00

15 lines
316 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IUser {
client_gravatar?: boolean;
include_custom_profile_fields?: boolean;
full_name?: string;
is_admin?: boolean;
is_guest?: boolean;
profile_data?: [IDataObject];
email?: string;
password?: string;
short_name?: string;
role?: number;
}