/// <summary> /// Retrieve a thread of messages posted to a channel /// <see href="https://api.slack.com/methods/channels.replies" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='threadTs'> /// Unique identifier of a thread's parent message /// </param> /// <param name='token'> /// Authentication token. Requires scope: `channels:history` /// </param> /// <param name='channel'> /// Channel to fetch thread from /// </param> public static RepliesOKResponseModel Replies(this IChannels operations, string threadTs = default(string), string token = default(string), string channel = default(string)) { return(operations.RepliesAsync(threadTs, token, channel).GetAwaiter().GetResult()); }