class Google::Apis::CloudresourcemanagerV3::ListFoldersResponse
The ListFolders response message.
Attributes
folders[RW]
A possibly paginated list of folders that are direct descendants of the specified parent resource. Corresponds to the JSON property `folders` @return [Array<Google::Apis::CloudresourcemanagerV3::Folder>]
next_page_token[RW]
A pagination token returned from a previous call to `ListFolders` that indicates from where listing should continue. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 746 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_v3/classes.rb, line 751 def update!(**args) @folders = args[:folders] if args.key?(:folders) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end