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

Issue

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

Metadata of an Issue.

interface Issue {
body?: string;
readonly closeTime?: Date;
readonly createTime?: Date;
etag?: string;
name?: string;
readonly state?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED";
title?: string;
readonly updateTime?: Date;
}

§Properties

§
body?: string
[src]

Optional. Issue body. Provides a detailed description of the issue.

§
readonly closeTime?: Date
[src]

Output only. Close timestamp (if closed). Cleared when is re-opened.

§
readonly createTime?: Date
[src]

Output only. Creation timestamp.

§
etag?: string
[src]

Optional. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

§
name?: string
[src]

Identifier. Unique identifier for an issue. The issue id is generated by the server. Format: projects/{project}/locations/{location}/repositories/{repository}/issues/{issue_id}

§
readonly state?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED"
[src]

Output only. State of the issue.

§
title?: string
[src]

Required. Issue title.

§
readonly updateTime?: Date
[src]

Output only. Last updated timestamp.