+ # Converts QuickVote candidate ID's to names Takes in a QuickVote name
+ # and a list of candidate ID's, and returns the names of each
+ # candidate. Useful for doing just a few lookups; it's more efficient
+ # to use get_quickvote_candidate_map for presenting info about an
+ # entire election.
+
+ api_method :quickvote_candidate_ids_to_names,
+ :expects => [:string,[:int]], :returns => [[:string]]
+
+ # Get information on all the votes cast in a QuickVote Takes in the
+ # name of a QuickVote, returns an array of QuickVoterInfo structures.
+ api_method :get_quickvote_votes, :expects => [:string],
+ :returns => [ [QuickVoterInfo] ]
+
+ # Gets a list of all QuickVotes in the system.
+ api_method :list_quickvotes, :expects => [],
+ :returns => [[QuickVoteStruct]]
+
+ # Gets information on a particular QuickVote. Takes in a QuickVote
+ # name.
+ api_method :get_quickvote, :expects => [:string],
+ :returns => [QuickVoteStruct]
+
+ # Create a QuickVote Pass in a QuickVoteStruct populated with all the
+ # fields but the candidate ID's
+ api_method :create_quickvote, :expects => [QuickVoteStruct],
+ :returns => [:string]
+end