class Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1ListDevicesResponse
Response message for SmartDeviceManagementService
.ListDevices
Attributes
devices[RW]
The list of devices. Corresponds to the JSON property `devices` @return [Array<Google::Apis::SmartdevicemanagementV1::GoogleHomeEnterpriseSdmV1Device>]
next_page_token[RW]
The pagination token to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/smartdevicemanagement_v1/classes.rb, line 126 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/smartdevicemanagement_v1/classes.rb, line 131 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end