Class: Google::Apis::CloudidentityV1beta1::ListDeviceUsersResponse

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

Response message that is returned from the ListDeviceUsers method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDeviceUsersResponse

Returns a new instance of ListDeviceUsersResponse.



1935
1936
1937
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1935

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

Instance Attribute Details

#device_usersArray<Google::Apis::CloudidentityV1beta1::DeviceUser>

Devices meeting the list restrictions. Corresponds to the JSON property deviceUsers



1928
1929
1930
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1928

def device_users
  @device_users
end

#next_page_tokenString

Token to retrieve the next page of results. Empty if there are no more results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1933
1934
1935
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1933

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1940
1941
1942
1943
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1940

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