/** *
The phone number associations, such as Amazon Chime account ID, Amazon Chime user ID, or Amazon Chime Voice Connector ID.
*/ export interface _PhoneNumberAssociation { /** *Contains the ID for the entity specified in Name.
*/ Value?: string; /** *Defines the association with an Amazon Chime account ID, user ID, or Amazon Chime Voice Connector ID.
*/ Name?: "AccountId" | "UserId" | "VoiceConnectorId" | string; /** *The timestamp of the phone number association, in ISO 8601 format.
*/ AssociatedTimestamp?: Date | string | number; } export interface _UnmarshalledPhoneNumberAssociation extends _PhoneNumberAssociation { /** *The timestamp of the phone number association, in ISO 8601 format.
*/ AssociatedTimestamp?: Date; }