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

UpdateContactRequest

import type { UpdateContactRequest } from "https://aws-api.deno.dev/v0.4/services/alexaforbusiness.ts?docs=full";
interface UpdateContactRequest {
ContactArn: string;
DisplayName?: string | null;
FirstName?: string | null;
LastName?: string | null;
PhoneNumber?: string | null;
PhoneNumbers?: PhoneNumber[] | null;
SipAddresses?: SipAddress[] | null;
}

§Properties

§
ContactArn: string
[src]

The ARN of the contact to update.

§
DisplayName?: string | null
[src]

The updated display name of the contact.

§
FirstName?: string | null
[src]

The updated first name of the contact.

§
LastName?: string | null
[src]

The updated last name of the contact.

§
PhoneNumber?: string | null
[src]

The updated 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.