Class PlaylistItemsResource
The "playlistItems" collection of methods.
Inherited Members
Namespace: Google.Apis.YouTube.v3
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class PlaylistItemsResource
Constructors
PlaylistItemsResource(IClientService)
Constructs a new resource.
Declaration
public PlaylistItemsResource(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Methods
Delete(string)
Deletes a resource.
Declaration
public virtual PlaylistItemsResource.DeleteRequest Delete(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id |
|
Returns
Type | Description |
---|---|
PlaylistItemsResource.DeleteRequest |
Insert(PlaylistItem, Repeatable<string>)
Inserts a new resource into this collection.
Declaration
public virtual PlaylistItemsResource.InsertRequest Insert(PlaylistItem body, Repeatable<string> part)
Parameters
Type | Name | Description |
---|---|---|
PlaylistItem | body | The body of the request. |
Repeatable<string> | 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. |
Returns
Type | Description |
---|---|
PlaylistItemsResource.InsertRequest |
List(Repeatable<string>)
Retrieves a list of resources, possibly filtered.
Declaration
public virtual PlaylistItemsResource.ListRequest List(Repeatable<string> part)
Parameters
Type | Name | Description |
---|---|---|
Repeatable<string> | 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. |
Returns
Type | Description |
---|---|
PlaylistItemsResource.ListRequest |
Update(PlaylistItem, Repeatable<string>)
Updates an existing resource.
Declaration
public virtual PlaylistItemsResource.UpdateRequest Update(PlaylistItem body, Repeatable<string> part)
Parameters
Type | Name | Description |
---|---|---|
PlaylistItem | body | The body of the request. |
Repeatable<string> | 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. |
Returns
Type | Description |
---|---|
PlaylistItemsResource.UpdateRequest |