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

UserInvitation

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

The UserInvitation resource represents an email that can be sent to an unmanaged user account inviting them to join the customer's Google Workspace or Cloud Identity account. An unmanaged account shares an email address domain with the Google Workspace or Cloud Identity account but is not managed by it yet. If the user accepts the UserInvitation, the user account will become managed.

interface UserInvitation {
mailsSentCount?: bigint;
name?: string;
state?:
| "STATE_UNSPECIFIED"
| "NOT_YET_SENT"
| "INVITED"
| "ACCEPTED"
| "DECLINED";
updateTime?: Date;
}

§Properties

§
mailsSentCount?: bigint
[src]

Number of invitation emails sent to the user.

§
name?: string
[src]

Shall be of the form customers/{customer}/userinvitations/{user_email_address}.

§
state?: "STATE_UNSPECIFIED" | "NOT_YET_SENT" | "INVITED" | "ACCEPTED" | "DECLINED"
[src]

State of the UserInvitation.

§
updateTime?: Date
[src]

Time when the UserInvitation was last updated.