/// <summary> /// Removes a user from a channel. /// <see href="https://api.slack.com/methods/channels.kick" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='token'> /// Authentication token. Requires scope: `channels:write` /// </param> /// <param name='user'> /// User to remove from channel. /// </param> /// <param name='channel'> /// Channel to remove user from. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <KickOKResponse> KickAsync(this IChannels operations, string token = default(string), string user = default(string), string channel = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.KickWithHttpMessagesAsync(token, user, channel, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }