class Google::Apis::YoutubeAnalyticsV2::ListGroupItemsResponse

Response message for GroupsService.ListGroupItems.

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 `groupItem` resource. Corresponds to the JSON property `items` @return [Array<Google::Apis::YoutubeAnalyticsV2::GroupItem>]

kind[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 360
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 365
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)
end