Refresh docs
diff --git a/docs/dyn/youtube_v3.channels.html b/docs/dyn/youtube_v3.channels.html
index 7104ca9..4c49487 100644
--- a/docs/dyn/youtube_v3.channels.html
+++ b/docs/dyn/youtube_v3.channels.html
@@ -72,73 +72,84 @@
</style>
-<h1><a href="youtube_v3.html">YouTube API</a> . <a href="youtube_v3.channels.html">channels</a></h1>
+<h1><a href="youtube_v3.html">YouTube Data API</a> . <a href="youtube_v3.channels.html">channels</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#list">list(part, onBehalfOfContentOwner=None, pageToken=None, categoryId=None, maxResults=None, mine=None, mySubscribers=None, id=None)</a></code></p>
-<p class="firstline">Browse the YouTube channel collection. Either the 'id' or 'mine' parameter must be set.</p>
+ <code><a href="#list">list(part=None, pageToken=None, mine=None, maxResults=None, categoryId=None, mySubscribers=None, id=None)</a></code></p>
+<p class="firstline">Returns a collection of zero or more channel resources that match the request criteria.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="list">list(part, onBehalfOfContentOwner=None, pageToken=None, categoryId=None, maxResults=None, mine=None, mySubscribers=None, id=None)</code>
- <pre>Browse the YouTube channel collection. Either the 'id' or 'mine' parameter must be set.
+ <code class="details" id="list">list(part=None, pageToken=None, mine=None, maxResults=None, categoryId=None, mySubscribers=None, id=None)</code>
+ <pre>Returns a collection of zero or more channel resources that match the request criteria.
Args:
- part: string, Channel parts to include in the returned response. Valid values are: id, snippet, contentDetails and topicDetails. (required)
- onBehalfOfContentOwner: string, The authenticated user acts on behalf of this content owner.
- pageToken: string, Token for the page selection.
- categoryId: string, Filter to retrieve the channels within the given category ID.
- maxResults: integer, Maximum number of results to return
- mine: string, Filter to only channels owned by authenticated user.
- mySubscribers: string, Filter to channels that subscribed to the channel of the authenticated user.
- id: string, YouTube IDs of the channels to be returned.
+ part: string, The part parameter specifies a comma-separated list of one or more channel resource properties that the API response will include. The part names that you can include in the parameter value are id, snippet, contentDetails, statistics, and topicDetails.
+
+If the parameter identifies a property that contains child properties, the child properties will be included in the response. For example, in a channel resource, the contentDetails property contains other properties, such as the uploads properties. As such, if you set part=contentDetails, the API response will also contain all of those nested properties. (required)
+ pageToken: string, The pageToken parameter identifies a specific page in the result set that should be returned. In an API response, the nextPageToken and prevPageToken properties identify other pages that could be retrieved.
+ mine: boolean, Set this parameter's value to true to instruct the API to only return channels owned by the authenticated user.
+ maxResults: integer, The maxResults parameter specifies the maximum number of items that should be returned in the result set.
+ categoryId: string, The categoryId parameter specifies a YouTube guide category, thereby requesting YouTube channels associated with that category.
+ mySubscribers: string, Set this parameter's value to true to retrieve a list of channels that subscribed to the authenticated user's channel.
+ id: string, The id parameter specifies a comma-separated list of the YouTube channel ID(s) for the resource(s) that are being retrieved. In a channel resource, the id property specifies the channel's YouTube channel ID.
Returns:
An object of the form:
{ # A paginated list of channels returned as the response to a youtube.channels.list call.
- "nextPageToken": "A String", # Token to the next page.
- "kind": "youtube#channelListResponse", # The type of this API response.
- "items": [ # List of channels matching the request criteria.
- { # A channel resource contains information about a single YouTube channel.
- "topicDetails": { # Freebase topic information related to the channel. # Information about channel topics
- "topicIds": [ # List of topic ids for this channel *
+ "nextPageToken": "A String", # The token that can be used as the value of the pageToken parameter to retrieve the next page in the result set.
+ "kind": "youtube#channelListResponse", # The type of the API response. For this operation, the value will be youtube#channelListResponse.
+ "items": [ # A list of channels that match the request criteria.
+ { # A channel resource contains information about a YouTube channel.
+ "status": { # JSON template for the status part of a channel. # The status object encapsulates information about the privacy status of the channel.
+ "privacyStatus": "A String", # Privacy status of the channel.
+ },
+ "topicDetails": { # Freebase topic information related to the channel. # The topicDetails object encapsulates information about Freebase topics associated with the channel.
+ "topicIds": [ # A list of Freebase topic IDs associated with the channel. You can retrieve information about each topic using the Freebase Topic API.
"A String",
],
},
- "kind": "youtube#channel", # The type of this API resource.
- "statistics": { # Statistics about a channel: number of subscribers, number of videos in the channel, etc. # Statistics about the channel: number of subscribers, views, and comments.
- "commentCount": "A String", # Number of comments for this channel.
- "subscriberCount": "A String", # Number of subscribers to this channel.
- "videoCount": "A String", # Number of videos in the channel.
- "viewCount": "A String", # Number of times the channel has been viewed.
+ "kind": "youtube#channel", # The type of the API resource. For channel resources, the value will be youtube#channel.
+ "statistics": { # Statistics about a channel: number of subscribers, number of videos in the channel, etc. # The statistics object encapsulates statistics for the channel.
+ "commentCount": "A String", # The number of comments for the channel.
+ "subscriberCount": "A String", # The number of subscribers that the channel has.
+ "videoCount": "A String", # The number of videos uploaded to the channel.
+ "viewCount": "A String", # The number of times the channel has been viewed.
},
- "contentDetails": { # Details about the content of a channel. # Information about the channel content: upload playlist id, privacy status.
- "privacyStatus": "A String", # Privacy status of the channel.
- "uploads": "A String", # The ID of the playlist containing the uploads of this channel.
+ "contentDetails": { # Details about the content of a channel. # The contentDetails object encapsulates information about the channel's content.
+ "relatedPlaylists": { # The relatedPlaylists object is a map that identifies playlists associated with the channel, such as the channel's uploaded videos or favorite videos. You can retrieve any of these playlists using the playlists.list method.
+ "watchLater": "A String", # The ID of the channel's watch later playlist. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
+ "watchHistory": "A String", # The ID of the playlist that contains the channel's watch history. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
+ "likes": "A String", # The ID of the playlist that contains the channel's liked videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
+ "favorites": "A String", # The ID of the playlist that contains the channel's favorite videos. Use the playlistItems.insert and playlistItems.delete to add or remove items from that list.
+ "uploads": "A String", # The ID of the playlist that contains the channel's uploaded videos. Use the videos.insert method to upload new videos and the videos.delete method to delete previously uploaded videos.
+ },
},
- "snippet": { # Basic details about a channel, including title, description and thumbnails. # Basic details about the channel: title, description, and thumbnails.
- "title": "A String", # Title of the channel.
- "channelId": "A String", # Id of the channel.
- "description": "A String", # Description of the channel.
- "publishedAt": "A String", # Date and time the channel was published at.
- "thumbnails": { # Channel thumbnails.
- "a_key": { # A thumbnail is an image representing a YouTube resource. # A map of thumbnails by their name.
- "url": "A String", # The URL for the thumbnail.
+ "snippet": { # Basic details about a channel, including title, description and thumbnails. # The snippet object contains basic details about the channel, such as its title, description, and thumbnail images.
+ "title": "A String", # The channel's title.
+ "channelId": "A String", # The ID that YouTube uses to uniquely identify the channel.
+ "description": "A String", # The channel's description.
+ "publishedAt": "A String", # The date and time that the channel was created. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.
+ "thumbnails": { # A map of thumbnail images associated with the channel. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail.
+ "a_key": { # The thumbnail image's name. This value is used as the key in the snippet.thumbnails map.
+ "url": "A String", # The thumbnail image's URL.
+ "width": 42,
+ "height": 42,
},
},
},
- "etag": "A String", # The eTag of the channel.
- "id": "A String", # The unique ID of the channel.
+ "etag": "A String", # The ETag for the channel resource.
+ "id": "A String", # The ID that YouTube uses to uniquely identify the channel.
},
],
- "etag": "A String", # The eTag of the response.
- "prevPageToken": "A String", # Token to the previous page.
- "pageInfo": { # Paging details for lists of resources, including total number of items available and number of resources returned in a single page. # Paging information for the list result.
- "totalResults": 42, # The total number of results.
- "resultsPerPage": 42, # The number of results to display for each page.
+ "etag": "A String", # The ETag for the response.
+ "prevPageToken": "A String", # The token that can be used as the value of the pageToken parameter to retrieve the previous page in the result set.
+ "pageInfo": { # Paging details for lists of resources, including total number of items available and number of resources returned in a single page. # The pageInfo object encapsulates paging information for the result set.
+ "totalResults": 42, # The total number of results in the result set.
+ "resultsPerPage": 42, # The number of results included in the API response.
},
}</pre>
</div>
@@ -154,7 +165,7 @@
Returns:
A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
- </pre>
+ </pre>
</div>
</body></html>
\ No newline at end of file