class Google::Apis::CloudresourcemanagerV1beta1::ListOrganizationsResponse

The response returned from the `ListOrganizations` method.

Attributes

next_page_token[RW]

A pagination token to be used to retrieve the next page of results. If the result is too large to fit within the page size specified in the request, this field will be set with a token that can be used to fetch the next page of results. If this field is empty, it indicates that this response contains the last page of results. Corresponds to the JSON property `nextPageToken` @return [String]

organizations[RW]

The list of Organizations that matched the list query, possibly paginated. Corresponds to the JSON property `organizations` @return [Array<Google::Apis::CloudresourcemanagerV1beta1::Organization>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/cloudresourcemanager_v1beta1/classes.rb, line 372
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/cloudresourcemanager_v1beta1/classes.rb, line 377
def update!(**args)
  @organizations = args[:organizations] if args.key?(:organizations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end