Class PlaylistImageListResponse
  
  
  
    Inheritance
    
    PlaylistImageListResponse
   
  
  
  
  Assembly: Google.Apis.YouTube.v3.dll
  Syntax
  
    public class PlaylistImageListResponse : IDirectResponseSchema
   
  Properties
  
  ETag
  
  
  Declaration
  
    public virtual string ETag { get; set; }
   
  Property Value
  
  
  Items
  
  
  Declaration
  
    [JsonProperty("items")]
public virtual IList<PlaylistImage> Items { get; set; }
   
  Property Value
  
  
  Kind
  Identifies what kind of resource this is. Value: the fixed string "youtube#playlistImageListResponse".
Declaration
  
    [JsonProperty("kind")]
public virtual string Kind { get; set; }
   
  Property Value
  
  
  NextPageToken
  The token that can be used as the value of the pageToken parameter to retrieve the next page in the result
set.
Declaration
  
    [JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
   
  Property Value
  
  
  PageInfo
  General pagination information.
Declaration
  
    [JsonProperty("pageInfo")]
public virtual PageInfo PageInfo { get; set; }
   
  Property Value
  
  
  PrevPageToken
  The token that can be used as the value of the pageToken parameter to retrieve the previous page in the
result set.
Declaration
  
    [JsonProperty("prevPageToken")]
public virtual string PrevPageToken { get; set; }
   
  Property Value
  
  Implements