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

PhoneNumber

import type { PhoneNumber } from "https://aws-api.deno.dev/v0.4/services/identitystore.ts?docs=full";

The phone number associated with the user.

interface PhoneNumber {
Primary?: boolean | null;
Type?: string | null;
Value?: string | null;
}

§Properties

§
Primary?: boolean | null
[src]

A Boolean value representing whether this is the primary phone number for the associated resource.

§
Type?: string | null
[src]

A string representing the type of a phone number. For example, "Mobile."

§
Value?: string | null
[src]

A string containing a phone number. For example, "8675309" or "+1 (800) 123-4567".