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

RunMobileFriendlyTestResponse

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

Mobile-friendly test response, including mobile-friendly issues and resource issues.

interface RunMobileFriendlyTestResponse {
mobileFriendliness?: "MOBILE_FRIENDLY_TEST_RESULT_UNSPECIFIED" | "MOBILE_FRIENDLY" | "NOT_MOBILE_FRIENDLY";
mobileFriendlyIssues?: MobileFriendlyIssue[];
resourceIssues?: ResourceIssue[];
screenshot?: Image;
testStatus?: TestStatus;
}

§Properties

§
mobileFriendliness?: "MOBILE_FRIENDLY_TEST_RESULT_UNSPECIFIED" | "MOBILE_FRIENDLY" | "NOT_MOBILE_FRIENDLY"
[src]

Test verdict, whether the page is mobile friendly or not.

§
mobileFriendlyIssues?: MobileFriendlyIssue[]
[src]

List of mobile-usability issues.

§
resourceIssues?: ResourceIssue[]
[src]

Information about embedded resources issues.

§
screenshot?: Image
[src]

Screenshot of the requested URL.

§
testStatus?: TestStatus
[src]

Final state of the test, can be either complete or an error.