class Google::Apis::AndroidmanagementV1::ListDevicesResponse

Response to a request to list devices for a given enterprise.

Attributes

devices[RW]

The list of devices. Corresponds to the JSON property `devices` @return [Array<Google::Apis::AndroidmanagementV1::Device>]

next_page_token[RW]

If there are more results, a token to retrieve 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/androidmanagement_v1/classes.rb, line 1837
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidmanagement_v1/classes.rb, line 1842
def update!(**args)
  @devices = args[:devices] if args.key?(:devices)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end