Class: Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaListIdeasResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaListIdeasResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ideahub_v1beta/classes.rb,
lib/google/apis/ideahub_v1beta/representations.rb,
lib/google/apis/ideahub_v1beta/representations.rb
Instance Attribute Summary collapse
-
#ideas ⇒ Array<Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaIdea>
Results for the ListIdeasRequest.
-
#next_page_token ⇒ String
Used to fetch the next page in a subsequent request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleSearchIdeahubV1betaListIdeasResponse
constructor
A new instance of GoogleSearchIdeahubV1betaListIdeasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleSearchIdeahubV1betaListIdeasResponse
Returns a new instance of GoogleSearchIdeahubV1betaListIdeasResponse.
202 203 204 |
# File 'lib/google/apis/ideahub_v1beta/classes.rb', line 202 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ideas ⇒ Array<Google::Apis::IdeahubV1beta::GoogleSearchIdeahubV1betaIdea>
Results for the ListIdeasRequest.
Corresponds to the JSON property ideas
195 196 197 |
# File 'lib/google/apis/ideahub_v1beta/classes.rb', line 195 def ideas @ideas end |
#next_page_token ⇒ String
Used to fetch the next page in a subsequent request.
Corresponds to the JSON property nextPageToken
200 201 202 |
# File 'lib/google/apis/ideahub_v1beta/classes.rb', line 200 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
207 208 209 210 |
# File 'lib/google/apis/ideahub_v1beta/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 |