class Google::Apis::CloudresourcemanagerV3::SearchOrganizationsResponse
The response returned from the `SearchOrganizations` 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 search query, possibly paginated. Corresponds to the JSON property `organizations` @return [Array<Google::Apis::CloudresourcemanagerV3::Organization>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 1377 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 1382 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @organizations = args[:organizations] if args.key?(:organizations) end