ListDevicesResponse

  • The devices.list method response includes a list of devices and a token for pagination.

  • Each device is represented as a JSON object adhering to the Device schema definition.

  • The nextPageToken enables retrieving subsequent pages of devices if available, otherwise indicating the end of the list.

Response for devices.list method.

JSON representation
{
  "devices": [
    {
      object (Device)
    }
  ],
  "nextPageToken": string
}
Fields
devices[]

object (Device)

The devices that match the request.

nextPageToken

string

A pagination token returned from a previous call to devices.list method that indicates from where listing should continue. If the field is missing or empty, it means there is no more devices.