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/manufacturers:v1.ts";

Product issue.

interface Issue {
attribute?: string;
description?: string;
destination?: string;
resolution?: "RESOLUTION_UNSPECIFIED" | "USER_ACTION" | "PENDING_PROCESSING";
severity?:
| "SEVERITY_UNSPECIFIED"
| "ERROR"
| "WARNING"
| "INFO";
timestamp?: Date;
title?: string;
type?: string;
}

§Properties

§
attribute?: string
[src]

If present, the attribute that triggered the issue. For more information about attributes, see https://support.google.com/manufacturers/answer/6124116.

§
description?: string
[src]

Longer description of the issue focused on how to resolve it.

§
destination?: string
[src]

The destination this issue applies to.

§
resolution?: "RESOLUTION_UNSPECIFIED" | "USER_ACTION" | "PENDING_PROCESSING"
[src]

What needs to happen to resolve the issue.

§
severity?: "SEVERITY_UNSPECIFIED" | "ERROR" | "WARNING" | "INFO"
[src]

The severity of the issue.

§
timestamp?: Date
[src]

The timestamp when this issue appeared.

§
title?: string
[src]

Short title describing the nature of the issue.

§
type?: string
[src]

The server-generated type of the issue, for example, “INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc.