Beispiel #1
0
 /// <summary>
 /// Renames a channel.
 /// <see href="https://api.slack.com/methods/channels.rename" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='token'>
 /// Authentication token. Requires scope: `channels:write`
 /// </param>
 /// <param name='validate'>
 /// Whether to return errors on invalid channel name instead of modifying it to
 /// meet the specified criteria.
 /// </param>
 /// <param name='name'>
 /// New name for channel.
 /// </param>
 /// <param name='channel'>
 /// Channel to rename
 /// </param>
 public static RenameOKResponse Rename(this IChannels operations, string token = default(string), bool?validate = default(bool?), string name = default(string), string channel = default(string))
 {
     return(operations.RenameAsync(token, validate, name, channel).GetAwaiter().GetResult());
 }