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

IosModel

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

A description of an iOS device tests may be run on.

interface IosModel {
deviceCapabilities?: string[];
formFactor?:
| "DEVICE_FORM_FACTOR_UNSPECIFIED"
| "PHONE"
| "TABLET"
| "WEARABLE";
id?: string;
name?: string;
perVersionInfo?: PerIosVersionInfo[];
screenDensity?: number;
screenX?: number;
screenY?: number;
supportedVersionIds?: string[];
tags?: string[];
}

§Properties

§
formFactor?: "DEVICE_FORM_FACTOR_UNSPECIFIED" | "PHONE" | "TABLET" | "WEARABLE"
[src]

Whether this device is a phone, tablet, wearable, etc.

§
id?: string
[src]

The unique opaque id for this model. Use this for invoking the TestExecutionService.

§
name?: string
[src]

The human-readable name for this device model. Examples: "iPhone 4s", "iPad Mini 2".

§
perVersionInfo?: PerIosVersionInfo[]
[src]

Version-specific information of an iOS model.

§
screenDensity?: number
[src]

Screen density in DPI.

§
screenX?: number
[src]

Screen size in the horizontal (X) dimension measured in pixels.

§
screenY?: number
[src]

Screen size in the vertical (Y) dimension measured in pixels.

§
supportedVersionIds?: string[]
[src]

The set of iOS major software versions this device supports.

§
tags?: string[]
[src]

Tags for this dimension. Examples: "default", "preview", "deprecated".