n8n/packages/nodes-base/nodes/Zulip/UserInterface.ts
2020-05-23 00:59:40 +02:00

12 lines
241 B
TypeScript

export interface IUser {
client_gravatar?: boolean;
include_custom_profile_fields?: boolean;
full_name?: string;
is_admin?: boolean;
is_guest?: boolean;
profile_data?: [{}];
email?: string;
password?: string;
short_name?: string;
}