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

13 lines
257 B
TypeScript
Raw Normal View History

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?: [{}];
email?: string;
password?: string;
short_name?: string;
role?: number;
2020-05-22 15:59:40 -07:00
}