Ejemplo n.º 1
0
 /// <summary>
 /// Sets the topic for a conversation.
 /// <see href="https://api.slack.com/methods/conversations.setTopic" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='token'>
 /// Authentication token. Requires scope: `conversations:write`
 /// </param>
 /// <param name='topic'>
 /// The new topic string. Does not support formatting or linkification.
 /// </param>
 /// <param name='channel'>
 /// Conversation to set the topic of
 /// </param>
 public static SetTopicOKResponseModel SetTopic(this IConversations operations, string token = default(string), string topic = default(string), string channel = default(string))
 {
     return(operations.SetTopicAsync(token, topic, channel).GetAwaiter().GetResult());
 }