Class: Google::Apis::CloudidentityV1::SearchGroupsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudidentity_v1/classes.rb,
generated/google/apis/cloudidentity_v1/representations.rb,
generated/google/apis/cloudidentity_v1/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.



1431
1432
1433
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1431

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

Instance Attribute Details

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

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



1423
1424
1425
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1423

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)


1429
1430
1431
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1429

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1436
1437
1438
1439
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 1436

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