Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FindDevicesByDeviceIdentifierResponse

import type { FindDevicesByDeviceIdentifierResponse } from "https://googleapis.deno.dev/v1/androiddeviceprovisioning:v1.ts";

Response containing found devices.

interface FindDevicesByDeviceIdentifierResponse {
devices?: Device[];
nextPageToken?: string;
totalSize?: number;
}

§Properties

§
devices?: Device[]
[src]

Found devices.

§
nextPageToken?: string
[src]

A token used to access the next page of results. Omitted if no further results are available.

§
totalSize?: number
[src]

The total count of items in the list irrespective of pagination.