Class: Google::Apis::YoutubeAnalyticsV1::ListGroupsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeAnalyticsV1::ListGroupsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_analytics_v1/classes.rb,
 generated/google/apis/youtube_analytics_v1/representations.rb,
 generated/google/apis/youtube_analytics_v1/representations.rb
Overview
A paginated list of grouList resources returned in response to a youtubeAnalytics.groupApi.list request.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property etag.
- 
  
    
      #items  ⇒ Array<Google::Apis::YoutubeAnalyticsV1::Group> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property items.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property kind.
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property nextPageToken.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListGroupsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListGroupsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListGroupsResponse
Returns a new instance of ListGroupsResponse
| 243 244 245 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 243 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Corresponds to the JSON property etag
| 226 227 228 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 226 def etag @etag end | 
#items ⇒ Array<Google::Apis::YoutubeAnalyticsV1::Group>
Corresponds to the JSON property items
| 231 232 233 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 231 def items @items end | 
#kind ⇒ String
Corresponds to the JSON property kind
| 236 237 238 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 236 def kind @kind end | 
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
| 241 242 243 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 241 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 248 249 250 251 252 253 | # File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 248 def update!(**args) @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 |