Approval
import type { Approval } from "https://googleapis.deno.dev/v1/drive:v3.ts";Metadata for an approval. An approval is a review/approve process for a Drive item.
interface Approval {
approvalId?: string;
readonly completeTime?: Date;
readonly createTime?: Date;
dueTime?: Date;
initiator?: User;
kind?: string;
readonly modifyTime?: Date;
reviewerResponses?: ReviewerResponse[];
readonly status?:
| "STATUS_UNSPECIFIED"
| "IN_PROGRESS"
| "APPROVED"
| "CANCELLED"
| "DECLINED";
targetFileId?: string;
}