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

Permission

import type { Permission } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface Permission {
emailAddress?: string;
role?:
| "ROLE_UNSPECIFIED"
| "OWNER"
| "owner"
| "READER"
| "reader"
| "WRITER"
| "writer";
}

§Properties

§
emailAddress?: string
[src]

The email address of the user, group, or service account to which this permission refers to.

§
role?: "ROLE_UNSPECIFIED" | "OWNER" | "owner" | "READER" | "reader" | "WRITER" | "writer"
[src]

The role granted by this permission.