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

Project

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

The script project resource.

interface Project {
createTime?: Date;
lastModifyUser?: GoogleAppsScriptTypeUser;
parentId?: string;
scriptId?: string;
title?: string;
updateTime?: Date;
}

§Properties

§
createTime?: Date
[src]

When the script was created.

§

User who originally created the script.

§

User who last modified the script.

§
parentId?: string
[src]

The parent's Drive ID that the script will be attached to. This is usually the ID of a Google Document or Google Sheet. This filed is optional, and if not set, a stand-alone script will be created.

§
scriptId?: string
[src]

The script project's Drive ID.

§
title?: string
[src]

The title for the project.

§
updateTime?: Date
[src]

When the script was last updated.