public class YouTube.PlaylistItems
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
class |
YouTube.PlaylistItems.Delete |
class |
YouTube.PlaylistItems.Insert |
class |
YouTube.PlaylistItems.List |
class |
YouTube.PlaylistItems.Update |
Constructor and Description |
---|
YouTube.PlaylistItems() |
Modifier and Type | Method and Description |
---|---|
YouTube.PlaylistItems.Delete |
delete(java.lang.String id)
Deletes a playlist item.
|
YouTube.PlaylistItems.Insert |
insert(java.lang.String part,
PlaylistItem content)
Adds a resource to a playlist.
|
YouTube.PlaylistItems.List |
list(java.lang.String part)
Returns a collection of playlist items that match the API request parameters.
|
YouTube.PlaylistItems.Update |
update(java.lang.String part,
PlaylistItem content)
Modifies a playlist item.
|
public YouTube.PlaylistItems.Delete delete(java.lang.String id) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.id
- The id parameter specifies the YouTube playlist item ID for the playlist item that is being deleted.
In a playlistItem resource, the id property specifies the playlist item's ID.java.io.IOException
public YouTube.PlaylistItems.Insert insert(java.lang.String part, PlaylistItem content) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.part
- The part parameter serves two purposes in this operation. It identifies the properties that the
write operation will set as well as the properties that the API response will include.content
- the PlaylistItem
java.io.IOException
public YouTube.PlaylistItems.List list(java.lang.String part) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.part
- The part parameter specifies a comma-separated list of one or more playlistItem resource properties
that the API response will include.
If the parameter identifies a property that contains
child properties, the child properties will be included in the response. For example, in a
playlistItem resource, the snippet property contains numerous fields, including the title,
description, position, and resourceId properties. As such, if you set part=snippet, the
API response will contain all of those properties.java.io.IOException
public YouTube.PlaylistItems.Update update(java.lang.String part, PlaylistItem content) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.part
- The part parameter serves two purposes in this operation. It identifies the properties that the
write operation will set as well as the properties that the API response will include.
Note that this method will override the existing values for all of the mutable properties
that are contained in any parts that the parameter value specifies. For example, a
playlist item can specify a start time and end time, which identify the times portion of
the video that should play when users watch the video in the playlist. If your request is
updating a playlist item that sets these values, and the request's part parameter value
includes the contentDetails part, the playlist item's start and end times will be updated
to whatever value the request body specifies. If the request body does not specify values,
the existing start and end times will be removed and replaced with the default settings.content
- the PlaylistItem
java.io.IOException