n8n/packages/nodes-base/nodes/Zulip/UserInterface.ts
2020-05-19 15:45:30 +02:00

11 lines
267 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;
}