public virtual void ListMutedUserIds(ListMutedUserIdsOptions options, Action<TwitterCursorList<long>, TwitterResponse> action)
		{
			var cursor = options.Cursor;
			
			WithHammock(_client, action, "mutes/users/ids", FormatAsString, "?cursor=", cursor);
		}
		public virtual Task<TwitterAsyncResult<TwitterCursorList<long>>> ListMutedUserIdsAsync(ListMutedUserIdsOptions options)
		{
			var cursor = options.Cursor;
			
			return WithHammockTask<TwitterCursorList<long>>(_client, "mutes/users/ids", FormatAsString, "?cursor=", cursor);
		}
		public virtual IAsyncResult BeginListMutedUserIds(ListMutedUserIdsOptions options)
		{
			var cursor = options.Cursor;
				

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