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

Contact

import type { Contact } from "https://aws-api.deno.dev/v0.3/services/alexaforbusiness.ts?docs=full";

A contact with attributes.

interface Contact {
ContactArn?: string | null;
DisplayName?: string | null;
FirstName?: string | null;
LastName?: string | null;
PhoneNumber?: string | null;
PhoneNumbers?: PhoneNumber[] | null;
SipAddresses?: SipAddress[] | null;
}

§Properties

§
ContactArn?: string | null
[src]

The ARN of the contact.

§
DisplayName?: string | null
[src]

The name of the contact to display on the console.

§
FirstName?: string | null
[src]

The first name of the contact, used to call the contact on the device.

§
LastName?: string | null
[src]

The last name of the contact, used to call the contact on the device.

§
PhoneNumber?: string | null
[src]

The phone number of the contact. The phone number type defaults to WORK. You can either specify PhoneNumber or PhoneNumbers. We recommend that you use PhoneNumbers, which lets you specify the phone number type and multiple numbers.

§
PhoneNumbers?: PhoneNumber[] | null
[src]

The list of phone numbers for the contact.

§
SipAddresses?: SipAddress[] | null
[src]

The list of SIP addresses for the contact.