class Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse
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_id`/deviceUsers/`user_resource_id“ , where device_id is the unique ID assigned to a Device
and user_resource_id 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_v1beta1/classes.rb, line 1949 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_v1beta1/classes.rb, line 1954 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