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

Approval

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

An approval for some action on an account.

interface Approval {
name?: string;
reason?: string;
state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "APPROVED"
| "REJECTED";
updateTime?: Date;
}

§Properties

§
name?: string
[src]

Output only. The name of the approval.

§
reason?: string
[src]

Output only. An explanation for the state of the approval.

§
state?: "STATE_UNSPECIFIED" | "PENDING" | "APPROVED" | "REJECTED"
[src]

Output only. The state of the approval.

§
updateTime?: Date
[src]

Optional. The last update timestamp of the approval.