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 |
---|
PlaylistItems() |
Modifier and Type | Method and Description |
---|---|
YouTube.PlaylistItems.Delete |
delete(String id)
Deletes a resource.
|
YouTube.PlaylistItems.Insert |
insert(List<String> part,
PlaylistItem content)
Inserts a new resource into this collection.
|
YouTube.PlaylistItems.List |
list(List<String> part)
Retrieves a list of resources, possibly filtered.
|
YouTube.PlaylistItems.Update |
update(List<String> part,
PlaylistItem content)
Updates an existing resource.
|
public YouTube.PlaylistItems.Delete delete(String id) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.id
- IOException
public YouTube.PlaylistItems.Insert insert(List<String> part, PlaylistItem content) throws 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
IOException
public YouTube.PlaylistItems.List list(List<String> part) throws 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.IOException
public YouTube.PlaylistItems.Update update(List<String> part, PlaylistItem content) throws 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
IOException
Copyright © 2011–2021 Google. All rights reserved.