/** *

The phone number capabilities, such as enabled inbound and outbound calling and text messaging.

*/ export interface _PhoneNumberCapabilities { /** *

Allows or denies inbound calling for the specified phone number.

*/ InboundCall?: boolean; /** *

Allows or denies outbound calling for the specified phone number.

*/ OutboundCall?: boolean; /** *

Allows or denies inbound SMS messaging for the specified phone number.

*/ InboundSMS?: boolean; /** *

Allows or denies outbound SMS messaging for the specified phone number.

*/ OutboundSMS?: boolean; /** *

Allows or denies inbound MMS messaging for the specified phone number.

*/ InboundMMS?: boolean; /** *

Allows or denies outbound MMS messaging for the specified phone number.

*/ OutboundMMS?: boolean; } export declare type _UnmarshalledPhoneNumberCapabilities = _PhoneNumberCapabilities;