class Google::Apis::YoutubeAnalyticsV2::ListGroupsResponse

Response message for GroupsService.ListGroups.

Attributes

errors[RW]

Request Error information. The presence of an error field signals that the operation has failed. Corresponds to the JSON property `errors` @return [Google::Apis::YoutubeAnalyticsV2::Errors]

etag[RW]

The Etag of this resource. Corresponds to the JSON property `etag` @return [String]

items[RW]

A list of groups that match the API request parameters. Each item in the list represents a `group` resource. Corresponds to the JSON property `items` @return [Array<Google::Apis::YoutubeAnalyticsV2::Group>]

kind[RW]

Identifies the API resource's type. The value will be `youtube# groupListResponse`. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

The token that can be used as the value of the `pageToken` parameter to retrieve the next page in the result set. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 406
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_analytics_v2/classes.rb, line 411
def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end