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

ClientUser

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

A user of a client who has restricted access to the Marketplace and certain other sections of the Authorized Buyers UI based on the role granted to the associated client.

interface ClientUser {
email?: string;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "INVITED"
| "ACTIVE"
| "INACTIVE";
}

§Properties

§
email?: string
[src]

Required. The client user's email address that has to be unique across all users for the same client.

§
readonly name?: string
[src]

Output only. The resource name of the client user. Format: buyers/{accountId}/clients/{clientAccountId}/users/{userId}

§
readonly state?: "STATE_UNSPECIFIED" | "INVITED" | "ACTIVE" | "INACTIVE"
[src]

Output only. The state of the client user.