/** * Works like flags, can be combined like this: RequestedChatBots.UserChatbots | RequestedChatBots.FavoriteChatbots */ export enum RequestedChatBots { /** * Get chatbots that the user owns. Requires authentication. */ UserChatbots = 1, /** * Get chatbots that the user has favorited. Requires authentication. */ FavoriteChatbots = 2, /** * Get chatbots that are public. Does not require authentication. */ PublicChatBots = 4, /** * Get chatbots that are owned by the organization. Requires authentication. * If the user is not an organization user, this will fail. */ OrganizationChatBots = 8, }