class Google::Apis::IdeahubV1alpha::GoogleSearchIdeahubV1alphaListIdeasResponse

Attributes

ideas[RW]

Results for the ListIdeasRequest. Corresponds to the JSON property `ideas` @return [Array<Google::Apis::IdeahubV1alpha::GoogleSearchIdeahubV1alphaIdea>]

next_page_token[RW]

Used to fetch the next page in a subsequent request. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/ideahub_v1alpha/classes.rb, line 202
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/ideahub_v1alpha/classes.rb, line 207
def update!(**args)
  @ideas = args[:ideas] if args.key?(:ideas)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end