class Google::Apis::CloudresourcemanagerV2::SearchFoldersResponse
The response message for searching folders.
Attributes
folders[RW]
A possibly paginated folder search results. the specified parent resource. Corresponds to the JSON property `folders` @return [Array<Google::Apis::CloudresourcemanagerV2::Folder>]
next_page_token[RW]
A pagination token returned from a previous call to `SearchFolders` that indicates from where searching should continue. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v2/classes.rb, line 978 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudresourcemanager_v2/classes.rb, line 983 def update!(**args) @folders = args[:folders] if args.key?(:folders) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end