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

DeviceMinutes

import type { DeviceMinutes } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents the total (metered or unmetered) minutes used by the resource to run tests. Contains the sum of minutes consumed by all children.

interface DeviceMinutes {
metered?: number | null;
total?: number | null;
unmetered?: number | null;
}

§Properties

§
metered?: number | null
[src]

When specified, represents only the sum of metered minutes used by the resource to run tests.

§
total?: number | null
[src]

When specified, represents the total minutes used by the resource to run tests.

§
unmetered?: number | null
[src]

When specified, represents only the sum of unmetered minutes used by the resource to run tests.