/** *

Invitation object returned after emailing users to invite them to join the Amazon Chime Team account.

*/ export interface _Invite { /** *

The invite ID.

*/ InviteId?: string; /** *

The status of the invite.

*/ Status?: "Pending" | "Accepted" | "Failed" | string; /** *

The email address to which the invite is sent.

*/ EmailAddress?: string; /** *

The status of the invite email.

*/ EmailStatus?: "NotSent" | "Sent" | "Failed" | string; } export declare type _UnmarshalledInvite = _Invite;