|
Methods defined here:
- __init__(self)
- insert = method(self, **kwargs)
- Votes on a community poll.
Args:
body: object, The request body. (required)
The object takes the form of:
{
"kind": "orkut#communityPollVote", # Identifies this resource as a community poll vote. Value: "orkut#communityPollVote"
"optionIds": [ # The ids of the voted options.
42,
],
"isVotevisible": True or False, # Whether this vote is visible to other users or not.
}
communityId: integer, The ID of the community whose poll is being voted. (required)
pollId: string, The ID of the poll being voted. (required)
Returns:
An object of the form
{
"kind": "orkut#communityPollVote", # Identifies this resource as a community poll vote. Value: "orkut#communityPollVote"
"optionIds": [ # The ids of the voted options.
42,
],
"isVotevisible": True or False, # Whether this vote is visible to other users or not.
}
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|