Exemple #1
0
 /// <summary>
 /// Retrieve information about a conversation.
 /// <see href="https://api.slack.com/methods/conversations.info" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='token'>
 /// Authentication token. Requires scope: `conversations:read`
 /// </param>
 /// <param name='channel'>
 /// Conversation ID to learn more about
 /// </param>
 /// <param name='includeLocale'>
 /// Set this to `true` to receive the locale for this conversation. Defaults to
 /// `false`
 /// </param>
 public static InfoOKResponseModelModelModel Info(this IConversations operations, string token = default(string), string channel = default(string), bool?includeLocale = default(bool?))
 {
     return(operations.InfoAsync(token, channel, includeLocale).GetAwaiter().GetResult());
 }