/** * @public * @enum */ export declare const ErrorCode: { readonly AccessDenied: "AccessDenied"; readonly BadRequest: "BadRequest"; readonly Conflict: "Conflict"; readonly Forbidden: "Forbidden"; readonly NotFound: "NotFound"; readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist"; readonly PreconditionFailed: "PreconditionFailed"; readonly ResourceLimitExceeded: "ResourceLimitExceeded"; readonly ServiceFailure: "ServiceFailure"; readonly ServiceUnavailable: "ServiceUnavailable"; readonly Throttled: "Throttled"; readonly Throttling: "Throttling"; readonly Unauthorized: "Unauthorized"; readonly Unprocessable: "Unprocessable"; readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist"; }; /** * @public */ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode]; /** * @public * @enum */ export declare const AccountStatus: { readonly Active: "Active"; readonly Suspended: "Suspended"; }; /** * @public */ export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus]; /** * @public * @enum */ export declare const AccountType: { readonly EnterpriseDirectory: "EnterpriseDirectory"; readonly EnterpriseLWA: "EnterpriseLWA"; readonly EnterpriseOIDC: "EnterpriseOIDC"; readonly Team: "Team"; }; /** * @public */ export type AccountType = (typeof AccountType)[keyof typeof AccountType]; /** * @public * @enum */ export declare const License: { readonly Basic: "Basic"; readonly Plus: "Plus"; readonly Pro: "Pro"; readonly ProTrial: "ProTrial"; }; /** * @public */ export type License = (typeof License)[keyof typeof License]; /** * @public * @enum */ export declare const RoomMembershipRole: { readonly Administrator: "Administrator"; readonly Member: "Member"; }; /** * @public */ export type RoomMembershipRole = (typeof RoomMembershipRole)[keyof typeof RoomMembershipRole]; /** * @public * @enum */ export declare const PhoneNumberProductType: { readonly BusinessCalling: "BusinessCalling"; readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn"; readonly VoiceConnector: "VoiceConnector"; }; /** * @public */ export type PhoneNumberProductType = (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType]; /** * @public * @enum */ export declare const UserType: { readonly PrivateUser: "PrivateUser"; readonly SharedDevice: "SharedDevice"; }; /** * @public */ export type UserType = (typeof UserType)[keyof typeof UserType]; /** * @public * @enum */ export declare const BotType: { readonly ChatBot: "ChatBot"; }; /** * @public */ export type BotType = (typeof BotType)[keyof typeof BotType]; /** * @public * @enum */ export declare const CallingNameStatus: { readonly Unassigned: "Unassigned"; readonly UpdateFailed: "UpdateFailed"; readonly UpdateInProgress: "UpdateInProgress"; readonly UpdateSucceeded: "UpdateSucceeded"; }; /** * @public */ export type CallingNameStatus = (typeof CallingNameStatus)[keyof typeof CallingNameStatus]; /** * @public * @enum */ export declare const OrderedPhoneNumberStatus: { readonly Acquired: "Acquired"; readonly Failed: "Failed"; readonly Processing: "Processing"; }; /** * @public */ export type OrderedPhoneNumberStatus = (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus]; /** * @public * @enum */ export declare const PhoneNumberOrderStatus: { readonly Failed: "Failed"; readonly Partial: "Partial"; readonly Processing: "Processing"; readonly Successful: "Successful"; }; /** * @public */ export type PhoneNumberOrderStatus = (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus]; /** * @public * @enum */ export declare const MemberType: { readonly Bot: "Bot"; readonly User: "User"; readonly Webhook: "Webhook"; }; /** * @public */ export type MemberType = (typeof MemberType)[keyof typeof MemberType]; /** * @public * @enum */ export declare const InviteStatus: { readonly Accepted: "Accepted"; readonly Failed: "Failed"; readonly Pending: "Pending"; }; /** * @public */ export type InviteStatus = (typeof InviteStatus)[keyof typeof InviteStatus]; /** * @public * @enum */ export declare const RegistrationStatus: { readonly Registered: "Registered"; readonly Suspended: "Suspended"; readonly Unregistered: "Unregistered"; }; /** * @public */ export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus]; /** * @public * @enum */ export declare const EmailStatus: { readonly Failed: "Failed"; readonly NotSent: "NotSent"; readonly Sent: "Sent"; }; /** * @public */ export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus]; /** * @public * @enum */ export declare const PhoneNumberAssociationName: { readonly AccountId: "AccountId"; readonly SipRuleId: "SipRuleId"; readonly UserId: "UserId"; readonly VoiceConnectorGroupId: "VoiceConnectorGroupId"; readonly VoiceConnectorId: "VoiceConnectorId"; }; /** * @public */ export type PhoneNumberAssociationName = (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName]; /** * @public * @enum */ export declare const PhoneNumberStatus: { readonly AcquireFailed: "AcquireFailed"; readonly AcquireInProgress: "AcquireInProgress"; readonly Assigned: "Assigned"; readonly DeleteFailed: "DeleteFailed"; readonly DeleteInProgress: "DeleteInProgress"; readonly ReleaseFailed: "ReleaseFailed"; readonly ReleaseInProgress: "ReleaseInProgress"; readonly Unassigned: "Unassigned"; }; /** * @public */ export type PhoneNumberStatus = (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus]; /** * @public * @enum */ export declare const PhoneNumberType: { readonly Local: "Local"; readonly TollFree: "TollFree"; }; /** * @public */ export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];