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

Metadata

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

An object that may be returned with your query results, providing context about the state of the data. When you request recent data (using all or hourly_all for dataState), some of the rows returned may represent data that is incomplete, which means that the data is still being collected and processed. This metadata object helps you identify exactly when this starts and ends. All dates and times provided in this object are in the America/Los_Angeles time zone. The specific field returned within this object depends on how you've grouped your data in the request. See details in inner fields.

interface Metadata {
firstIncompleteDate?: string;
firstIncompleteHour?: string;
}

§Properties

§
firstIncompleteDate?: string
[src]

The first date for which the data is still being collected and processed, presented in YYYY-MM-DD format (ISO-8601 extended local date format). This field is populated only when the request's dataState is "all", data is grouped by "DATE", and the requested date range contains incomplete data points. All values after the first_incomplete_date may still change noticeably.

§
firstIncompleteHour?: string
[src]

The first hour for which the data is still being collected and processed, presented in YYYY-MM-DDThh:mm:ss[+|-]hh:mm format (ISO-8601 extended offset date-time format). This field is populated only when the request's dataState is "hourly_all", data is grouped by "HOUR" and the requested date range contains incomplete data points. All values after the first_incomplete_hour may still change noticeably.