/// <summary> /// Initiates a public or private channel-based conversation. /// </summary> public Task <ConversationResponse> CreateAsync(ChannelToCreate channelToCreate) => SendPostFormUrlEncodedAsync <ChannelToCreate, ConversationResponse>("create", channelToCreate);
/// <inheritdoc cref="ConversationsClient.CreateAsync(ChannelToCreate)"/> public Task <ConversationResponse> CreateChannelAsync(ChannelToCreate channelToCreate) => Conversations.CreateAsync(channelToCreate);