class Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse
Response containing resource names of the DeviceUsers associated with the caller's credentials.
Attributes
customer[RW]
The obfuscated customer Id that may be passed back to other Devices API methods such as List, Get, etc. Corresponds to the JSON property `customer` @return [String]
names[RW]
[Resource names](cloud.google.com/apis/design/resource_names) of the DeviceUsers in the format: `devices/`device`/deviceUsers/`user_resourceā, where device is the unique ID assigned to a Device and user_resource is the unique user ID Corresponds to the JSON property `names` @return [Array<String>]
next_page_token[RW]
Token to retrieve the next page of results. Empty if there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudidentity_v1/classes.rb, line 1104 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudidentity_v1/classes.rb, line 1109 def update!(**args) @customer = args[:customer] if args.key?(:customer) @names = args[:names] if args.key?(:names) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end