public virtual void ListMutedUsers(ListMutedUsersOptions options, Action<TwitterCursorList<long>, TwitterResponse> action)
		{
			var cursor = options.Cursor;
			
			WithHammock(_client, action, "mutes/users/list", FormatAsString, "?cursor=", cursor);
		}
		public virtual Task<TwitterAsyncResult<TwitterCursorList<long>>> ListMutedUsersAsync(ListMutedUsersOptions options)
		{
			var cursor = options.Cursor;
			
			return WithHammockTask<TwitterCursorList<long>>(_client, "mutes/users/list", FormatAsString, "?cursor=", cursor);
		}
		public virtual IAsyncResult BeginListMutedUsers(ListMutedUsersOptions options)
		{
			var cursor = options.Cursor;
				

			return BeginWithHammock<TwitterCursorList<long>>(_client, WebMethod.Get, "mutes/users/list", FormatAsString, "?cursor=", cursor);
		}