|
Methods defined here:
- __init__(self)
- get = method(self, **kwargs)
- Returns the votes by the authenticated user for the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
userId: string, A parameter
submissionId: integer, The decimal ID of the Submission within the Series. (required)
- insert = method(self, **kwargs)
- Inserts a new vote by the authenticated user for the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
body: object, The request body. (required)
submissionId: integer, The decimal ID of the Submission within the Series. (required)
- list = method(self, **kwargs)
- Lists the votes by the authenticated user for the given series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
max_results: integer, Maximum number of results to return.
start_index: integer, Index of the first result to be retrieved.
- patch = method(self, **kwargs)
- Updates the votes by the authenticated user for the specified submission within the specified series. This method supports patch semantics.
Args:
seriesId: integer, The decimal ID of the Series. (required)
body: object, The request body. (required)
userId: string, A parameter
submissionId: integer, The decimal ID of the Submission within the Series. (required)
- update = method(self, **kwargs)
- Updates the votes by the authenticated user for the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
body: object, The request body. (required)
userId: string, A parameter
submissionId: integer, The decimal ID of the Submission within the Series. (required)
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|