class Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaListIdeasResponse
Attributes
ideas[RW]
Results for the ListIdeasRequest. Corresponds to the JSON property `ideas` @return [Array<Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaIdea>]
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_v1beta/classes.rb, line 157 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_v1beta/classes.rb, line 162 def update!(**args) @ideas = args[:ideas] if args.key?(:ideas) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end