Class: Google::Apis::YoutubereportingV1::ListReportsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubereportingV1::ListReportsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtubereporting_v1/classes.rb,
 generated/google/apis/youtubereporting_v1/representations.rb,
 generated/google/apis/youtubereporting_v1/representations.rb
Overview
Response message for ReportingService.ListReports.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to retrieve next page of results. 
- 
  
    
      #reports  ⇒ Array<Google::Apis::YoutubereportingV1::Report> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of report types. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListReportsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListReportsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListReportsResponse
Returns a new instance of ListReportsResponse
| 749 750 751 | # File 'generated/google/apis/youtubereporting_v1/classes.rb', line 749 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results.
Pass this value in the
ListReportsRequest.page_token
field in the subsequent call to ListReports method to retrieve the next
page of results.
Corresponds to the JSON property nextPageToken
| 742 743 744 | # File 'generated/google/apis/youtubereporting_v1/classes.rb', line 742 def next_page_token @next_page_token end | 
#reports ⇒ Array<Google::Apis::YoutubereportingV1::Report>
The list of report types.
Corresponds to the JSON property reports
| 747 748 749 | # File 'generated/google/apis/youtubereporting_v1/classes.rb', line 747 def reports @reports end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 754 755 756 757 | # File 'generated/google/apis/youtubereporting_v1/classes.rb', line 754 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @reports = args[:reports] if args.key?(:reports) end |