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

TransferError

import type { TransferError } from "https://googleapis.deno.dev/v1/alertcenter:v1beta1.ts";

Details for an invalid transfer or forward.

interface TransferError {
email?: string;
entityType?:
| "TRANSFER_ENTITY_TYPE_UNSPECIFIED"
| "TRANSFER_AUTO_ATTENDANT"
| "TRANSFER_RING_GROUP"
| "TRANSFER_USER";
id?: string;
invalidReason?:
| "TRANSFER_INVALID_REASON_UNSPECIFIED"
| "TRANSFER_TARGET_DELETED"
| "UNLICENSED"
| "SUSPENDED"
| "NO_PHONE_NUMBER";
name?: string;
}

§Properties

§
email?: string
[src]

User's email address. This may be unavailable if the entity was deleted.

§
entityType?: "TRANSFER_ENTITY_TYPE_UNSPECIFIED" | "TRANSFER_AUTO_ATTENDANT" | "TRANSFER_RING_GROUP" | "TRANSFER_USER"
[src]

Type of entity being transferred to. For ring group members, this should always be USER.

§
id?: string
[src]

Ring group or auto attendant ID. Not set for users.

§
invalidReason?: "TRANSFER_INVALID_REASON_UNSPECIFIED" | "TRANSFER_TARGET_DELETED" | "UNLICENSED" | "SUSPENDED" | "NO_PHONE_NUMBER"
[src]

Reason for the error.

§
name?: string
[src]

User's full name, or the ring group / auto attendant name. This may be unavailable if the entity was deleted.