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

GetOfferingStatusResult

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

Returns the status result for a device offering.

interface GetOfferingStatusResult {
current?: {
[key: string]: OfferingStatus | null | undefined;
}
| null;
nextPeriod?: {
[key: string]: OfferingStatus | null | undefined;
}
| null;
nextToken?: string | null;
}

§Properties

§
current?: {
[key: string]: OfferingStatus | null | undefined;
}
| null
[src]

When specified, gets the offering status for the current period.

§
nextPeriod?: {
[key: string]: OfferingStatus | null | undefined;
}
| null
[src]

When specified, gets the offering status for the next period.

§
nextToken?: string | null
[src]

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.