blob: d6e0c84b735451c0c85ba1a3d1b4eac7229d33de [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-03/schema",
"$license": [
"http://www.apache.org/licenses/LICENSE-2.0"
],
"id": "#",
"javaType" : "org.apache.streams.twitter.api.FavoritesListRequest",
"javaInterfaces": ["java.io.Serializable"],
"properties": {
"user_id": {
"description": "The ID of the user for whom to return results. Either an id or screen_name is required for this method.",
"required": false,
"type": "integer"
},
"screen_name": {
"description": "The screen name of the user for whom to return results. Either a id or screen_name is required for this method.",
"required": false,
"type": "string"
},
"count": {
"description": "Specifies the number of records to retrieve. Must be less than or equal to 200; defaults to 20. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied.",
"required": false,
"type": "integer"
},
"since_id": {
"description": "Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.",
"required": false,
"type": "integer"
},
"max_id": {
"description": "Returns results with an ID less than (that is, older than) or equal to the specified ID.",
"required": false,
"type": "integer"
},
"include_entities": {
"description": "The entities node will be omitted when set to false .",
"required": false,
"type": "boolean"
}
}
}