|
Methods defined here:
- __init__(self)
- delete = method(self, **kwargs)
- Deletes the specified tag from the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
tagId: string, A parameter (required)
submissionId: integer, The decimal ID of the Submission within the Series. (required)
- insert = method(self, **kwargs)
- Inserts a new tag for the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
body: object, The request body. (required)
The object takes the form of:
{
"text": "A String",
"kind": "moderator#tag",
"id": {
"seriesId": "A String",
"tagId": "A String",
"submissionId": "A String",
},
}
submissionId: integer, The decimal ID of the Submission within the Series. (required)
Returns:
An object of the form
{
"text": "A String",
"kind": "moderator#tag",
"id": {
"seriesId": "A String",
"tagId": "A String",
"submissionId": "A String",
},
}
- list = method(self, **kwargs)
- Lists all tags for the specified submission within the specified series.
Args:
seriesId: integer, The decimal ID of the Series. (required)
submissionId: integer, The decimal ID of the Submission within the Series. (required)
Returns:
An object of the form
{
"items": [
{
"text": "A String",
"kind": "moderator#tag",
"id": {
"seriesId": "A String",
"tagId": "A String",
"submissionId": "A String",
},
},
],
"kind": "moderator#tagList",
}
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|