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

UpdateProfileRequest

import type { UpdateProfileRequest } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface UpdateProfileRequest {
AccountNumber?: string | null;
AdditionalInformation?: string | null;
Address?: UpdateAddress | null;
Attributes?: {
[key: string]: string | null | undefined;
}
| null;
BillingAddress?: UpdateAddress | null;
BirthDate?: string | null;
BusinessEmailAddress?: string | null;
BusinessName?: string | null;
BusinessPhoneNumber?: string | null;
DomainName: string;
EmailAddress?: string | null;
FirstName?: string | null;
Gender?: Gender | null;
GenderString?: string | null;
HomePhoneNumber?: string | null;
LastName?: string | null;
MailingAddress?: UpdateAddress | null;
MiddleName?: string | null;
MobilePhoneNumber?: string | null;
PartyType?: PartyType | null;
PartyTypeString?: string | null;
PersonalEmailAddress?: string | null;
PhoneNumber?: string | null;
ProfileId: string;
ShippingAddress?: UpdateAddress | null;
}

§Properties

§
AccountNumber?: string | null
[src]

A unique account number that you have given to the customer.

§
AdditionalInformation?: string | null
[src]

Any additional information relevant to the customer’s profile.

§
Address?: UpdateAddress | null
[src]

A generic address associated with the customer that is not mailing, shipping, or billing.

§
Attributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

A key value pair of attributes of a customer profile.

§
BillingAddress?: UpdateAddress | null
[src]

The customer’s billing address.

§
BirthDate?: string | null
[src]

The customer’s birth date.

§
BusinessEmailAddress?: string | null
[src]

The customer’s business email address.

§
BusinessName?: string | null
[src]

The name of the customer’s business.

§
BusinessPhoneNumber?: string | null
[src]

The customer’s business phone number.

§
DomainName: string
[src]

The unique name of the domain.

§
EmailAddress?: string | null
[src]

The customer’s email address, which has not been specified as a personal or business address.

§
FirstName?: string | null
[src]

The customer’s first name.

§
Gender?: Gender | null
[src]

The gender with which the customer identifies.

§
GenderString?: string | null
[src]

An alternative to Gender which accepts any string as input.

§
HomePhoneNumber?: string | null
[src]

The customer’s home phone number.

§
LastName?: string | null
[src]

The customer’s last name.

§
MailingAddress?: UpdateAddress | null
[src]

The customer’s mailing address.

§
MiddleName?: string | null
[src]

The customer’s middle name.

§
MobilePhoneNumber?: string | null
[src]

The customer’s mobile phone number.

§
PartyType?: PartyType | null
[src]

The type of profile used to describe the customer.

§
PartyTypeString?: string | null
[src]

An alternative to PartyType which accepts any string as input.

§
PersonalEmailAddress?: string | null
[src]

The customer’s personal email address.

§
PhoneNumber?: string | null
[src]

The customer’s phone number, which has not been specified as a mobile, home, or business number.

§
ProfileId: string
[src]

The unique identifier of a customer profile.

§
ShippingAddress?: UpdateAddress | null
[src]

The customer’s shipping address.