Class: Google::Apis::CloudidentityV1::ListDeviceUsersResponse

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

Response message that is returned in LRO result of ListDeviceUsers Operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListDeviceUsersResponse

Returns a new instance of ListDeviceUsersResponse.



593
594
595
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 593

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

Instance Attribute Details

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

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



585
586
587
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 585

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)


591
592
593
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 591

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



598
599
600
601
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 598

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