class Google::Apis::CloudresourcemanagerV2::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::CloudresourcemanagerV2::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_v2/classes.rb, line 651
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 656
def update!(**args)
  @folders = args[:folders] if args.key?(:folders)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end