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

Offering

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

Represents the metadata of a device offering.

interface Offering {
description?: string | null;
id?: string | null;
platform?: DevicePlatform | null;
recurringCharges?: RecurringCharge[] | null;
type?: OfferingType | null;
}

§Properties

§
description?: string | null
[src]

A string that describes the offering.

§
id?: string | null
[src]

The ID that corresponds to a device offering.

§
platform?: DevicePlatform | null
[src]

The platform of the device (for example, ANDROID or IOS).

§
recurringCharges?: RecurringCharge[] | null
[src]

Specifies whether there are recurring charges for the offering.

§
type?: OfferingType | null
[src]

The type of offering (for example, RECURRING) for a device.