ListChannelsResponse

  • The JSON representation of a ListChannelsResponse includes a list of channel objects and an optional token for retrieving the next page of results.

  • The channels field is an array of Channel objects and will be empty if there are no channels.

  • The nextPageToken is a string used to request the subsequent page of results by passing it in the pageToken query parameter of the channels.list method.

JSON representation
{
  "channels": [
    {
      object (Channel)
    }
  ],
  "nextPageToken": string
}
Fields
channels[]

object (Channel)

The list of channels.

This list will be absent if empty.

nextPageToken

string

A token to retrieve the next page of results. Pass this value in the pageToken field in the subsequent call to channels.list method to retrieve the next page of results.