class Google::Apis::GenomicsV1alpha2::ListPipelinesResponse
The response of ListPipelines. Contains at most `pageSize` pipelines. If it contains `pageSize` pipelines, and more pipelines exist, then `nextPageToken` will be populated and should be used as the `pageToken` argument to a subsequent ListPipelines request.
Attributes
next_page_token[RW]
The token to use to get the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
pipelines[RW]
The matched pipelines. Corresponds to the JSON property `pipelines` @return [Array<Google::Apis::GenomicsV1alpha2::Pipeline>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 480 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 485 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @pipelines = args[:pipelines] if args.key?(:pipelines) end