Class: Google::Apis::YoutubereportingV1::ListJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/youtubereporting_v1/classes.rb,
lib/google/apis/youtubereporting_v1/representations.rb,
lib/google/apis/youtubereporting_v1/representations.rb

Overview

Response message for ReportingService.ListJobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListJobsResponse

Returns a new instance of ListJobsResponse.



685
686
687
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 685

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#jobsArray<Google::Apis::YoutubereportingV1::Job>

The list of jobs. Corresponds to the JSON property jobs



676
677
678
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 676

def jobs
  @jobs
end

#next_page_tokenString

A token to retrieve next page of results. Pass this value in the ListJobsRequest.page_token field in the subsequent call to ListJobs method to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


683
684
685
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 683

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



690
691
692
693
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 690

def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end