/// <summary>
 /// Add users to a chat
 /// </summary>
 /// <remarks>
 /// This will add a list of users to a specific chat
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='addUsersToChatDTO'>
 /// Users to be added to a chat
 /// </param>
 public static void AddUsersToChat(this IChats operations, AddUsersToChatDTO addUsersToChatDTO = default(AddUsersToChatDTO))
 {
     operations.AddUsersToChatAsync(addUsersToChatDTO).GetAwaiter().GetResult();
 }