Class: Google::Apis::CloudidentityV1beta1::SearchGroupsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb

Overview

The response message for GroupsService.SearchGroups.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchGroupsResponse

Returns a new instance of SearchGroupsResponse.



2653
2654
2655
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2653

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#groupsArray<Google::Apis::CloudidentityV1beta1::Group>

The Group resources that match the search query. Corresponds to the JSON property groups



2645
2646
2647
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2645

def groups
  @groups
end

#next_page_tokenString

A continuation token to retrieve the next page of results, or empty if there are no more results available. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2651
2652
2653
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2651

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2658
2659
2660
2661
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2658

def update!(**args)
  @groups = args[:groups] if args.key?(:groups)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end