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

CreateContactRequest

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

§Properties

§
ClientRequestToken?: string | null
[src]

A unique, user-specified identifier for this request that ensures idempotency.

§
DisplayName?: string | null
[src]

The name of the contact to display on the console.

§
FirstName: string
[src]

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

§
LastName?: string | null
[src]

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

§
PhoneNumber?: string | null
[src]

The phone number of the contact in E.164 format. The phone number type defaults to WORK. You can 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.

§
Tags?: Tag[] | null
[src]

The tags to be added to the specified resource. Do not provide system tags.