1using System.Collections.Generic;
3using System.Threading.Tasks;
Common base of entities with IDs.
Represents a request to update a chat bot.
Represents a request to update a chat bot.
For managing the chat bots.
ValueTask Delete(EntityId settingsId, CancellationToken cancellationToken)
Delete a chat bot.
ValueTask< ChatBotResponse > GetId(EntityId settingsId, CancellationToken cancellationToken)
Get a specific chat bot's settings.
ValueTask< ChatBotResponse > Create(ChatBotCreateRequest settings, CancellationToken cancellationToken)
Create a chat bot.
ValueTask< List< ChatBotResponse > > List(PaginationSettings? paginationSettings, CancellationToken cancellationToken)
List the chat bots.
ValueTask< ChatBotResponse > Update(ChatBotUpdateRequest settings, CancellationToken cancellationToken)
Updates a chat bot's setttings.